Ubuntu 上的 HandbrakeCLI 出现 Python 错误,未找到文件
HandbrakeCLI on Ubuntu with Python Errors with File Not Found
我正在尝试在 python3 中编写一个程序,在我的 ubuntu 机器上使用 handbrakecli 重新编码一些视频。
我遗漏了一些愚蠢的东西,但我一辈子都弄不明白,而且我已经研究了无数个小时。
代码如下:
def convertvideo(input_file):
hb_args = (" -i " + input_file + " -o " + handbraketempspace + " --preset-import-file "+handbrake_json_file_location + " -Z " + handbrake_profile_name)
print (hb_args) # for debug only
subprocess.Popen(handbrake + hb_args)
return()
无论我如何重新排列“,我都会遇到两个错误之一,要么手刹说找不到文件,要么找不到我的预设。
这个确切的命令在命令行中完美运行。
具体错误如下:
Traceback (most recent call last):
File "SubProcessing.py", line 161, in <module>
finalvideo = convertvideo(sys.argv[2])
File "SubProcessing.py", line 82, in convertvideo
subprocess.Popen(handbrake + hb_args)
File "/usr/lib/python3.8/subprocess.py", line 854, in __init__
self._execute_child(args, executable, preexec_fn, close_fds,
File "/usr/lib/python3.8/subprocess.py", line 1702, in _execute_child
raise child_exception_type(errno_num, err_msg, err_filename)
FileNotFoundError: [Errno 2] No such file or directory: "/usr/bin/HandBrakeCLI -i /root/Alone-S02E01-Once_More_Unto_the_Breach_HDTV-720p.mkv -o /root/tmp/tempvideo.mkv --preset-import-file /mnt/media/PlexTestFiles/handbrake_presets.json -Z 'h.265_Hardware'"
在此先感谢您的帮助。同样,我不是 python 编码员,但我认为这不会这么难。
您需要使用数组而不是字符串中的参数调用 subprocess.Popen
。在您的情况下,相关部分将是:
subprocess.Popen([handbrake, "-i", input_file, "-o", handbraketempspace, "--preset-import-file", handbrake_json_file_location, "-Z", handbrake_profile_name])
或者,您可以将 shell=True
指定为 subprocess.Popen
,但这会不必要地启动 shell,因此最好不要使用它。
我正在尝试在 python3 中编写一个程序,在我的 ubuntu 机器上使用 handbrakecli 重新编码一些视频。
我遗漏了一些愚蠢的东西,但我一辈子都弄不明白,而且我已经研究了无数个小时。
代码如下:
def convertvideo(input_file):
hb_args = (" -i " + input_file + " -o " + handbraketempspace + " --preset-import-file "+handbrake_json_file_location + " -Z " + handbrake_profile_name)
print (hb_args) # for debug only
subprocess.Popen(handbrake + hb_args)
return()
无论我如何重新排列“,我都会遇到两个错误之一,要么手刹说找不到文件,要么找不到我的预设。
这个确切的命令在命令行中完美运行。
具体错误如下:
Traceback (most recent call last):
File "SubProcessing.py", line 161, in <module>
finalvideo = convertvideo(sys.argv[2])
File "SubProcessing.py", line 82, in convertvideo
subprocess.Popen(handbrake + hb_args)
File "/usr/lib/python3.8/subprocess.py", line 854, in __init__
self._execute_child(args, executable, preexec_fn, close_fds,
File "/usr/lib/python3.8/subprocess.py", line 1702, in _execute_child
raise child_exception_type(errno_num, err_msg, err_filename)
FileNotFoundError: [Errno 2] No such file or directory: "/usr/bin/HandBrakeCLI -i /root/Alone-S02E01-Once_More_Unto_the_Breach_HDTV-720p.mkv -o /root/tmp/tempvideo.mkv --preset-import-file /mnt/media/PlexTestFiles/handbrake_presets.json -Z 'h.265_Hardware'"
在此先感谢您的帮助。同样,我不是 python 编码员,但我认为这不会这么难。
您需要使用数组而不是字符串中的参数调用 subprocess.Popen
。在您的情况下,相关部分将是:
subprocess.Popen([handbrake, "-i", input_file, "-o", handbraketempspace, "--preset-import-file", handbrake_json_file_location, "-Z", handbrake_profile_name])
或者,您可以将 shell=True
指定为 subprocess.Popen
,但这会不必要地启动 shell,因此最好不要使用它。