我试图在python脚本中执行这个命令:
avprobeCommand = "avprobe -of json -show_streams {0} | grep '\"duration\"' | sed -n 1p | sed 's/ //g'".format(hiOutput)
output = subprocess.check_output([avprobeCommand])我不断地得到:
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py", line 552, in __bootstrap_inner
self.run()
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py", line 505, in run
self.__target(*self.__args, **self.__kwargs)
File "/Users/jmakaila/Documents/Development/Present/Web/video_dev/present-live-transcoder/Transcoder.py", line 60, in transcode
output = subprocess.check_output([avprobeCommand])
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 537, in check_output
process = Popen(stdout=PIPE, *popenargs, **kwargs)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 679, in __init__
errread, errwrite)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 1228, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory我已经尝试过拆分args,但是我一直收到一个-of json -show_streams部件的错误,记录在案,如下所示:
subprocess.check_output(["avprobe", "-of json", "-show_streams", "{0}".format(hiOutput)发布于 2013-10-19 03:47:17
将命令作为字符串传递,并传递shell=True
import pipes
import subprocess
avprobeCommand = """avprobe -of json -show_streams {0} | grep '"duration"' | sed -n 1p | sed 's/ //g'""".format(pipes.quote(hiOutput))
output = subprocess.check_output(avprobeCommand, shell=True)UPDATE:参数应该使用pipes.quote转义。(如果使用Python shlex.quote 3.3+,则使用3.3+)。
发布于 2013-10-24 11:36:58
在您的例子中,您可以将后处理移到Python中:
import json
from subprocess import check_output as qx
data = json.loads(qx(["avprobe", "-of", "json", "-show_streams", hiOutput]))
result = data["duration"] # grep '"duration"'
.partition("\n")[0] # sed -n 1p
.replace(" ", "") # sed 's/ //g'有关更一般的情况,请参见How do I use subprocess.Popen to connect multiple processes by pipes?
https://stackoverflow.com/questions/19462117
复制相似问题