0

我正在尝试在 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 编码器,但我不认为这会这么难。

4

1 回答 1

0

您需要subprocess.Popen使用数组中的参数调用,而不是字符串。在您的情况下,相关部分将是:

subprocess.Popen([handbrake, "-i", input_file, "-o", handbraketempspace, "--preset-import-file", handbrake_json_file_location, "-Z", handbrake_profile_name])

或者,您可以指定shell=Trueto subprocess.Popen,但这会不必要地启动 shell,因此最好不要使用它。

于 2020-09-24T22:16:54.353 回答