ffmpy连接多个文件与文件列表(ffmpy concatenate multiple files

2019-10-30 04:34发布

我目前正试图合并使用的ffmpeg和ffmpy python脚本多个视频文件。 该文件的名称被写入到文件列表,所建议ffmpeg的串连维基 。

在我的例子我只使用两个文件,但在实践中,会有好几个hundert文件,这就是为什么我选择文件列表的方法。

我当前的代码如下所示:

import os
import ffmpy


base_dir = "/path/to/the/files"

# where to seek the files
file_list = open("video_list.txt", "x")

# scan for the video files
for root, dirs, files in os.walk(base_dir):
    for video_file in files:
        if video_file.endswith(".avi"):
            file_list.write("file './%s'\n" % video_file)

# merge the video files
ff = ffmpy.FFmpeg(
    global_options={"-f",
                    "concat ",
                    "-safe",
                    "0"},
    inputs={file_list: None},
    outputs={"-c",
             "copy",
             "output.avi"},
)
ff.run()

所以,我想与ffmpy运行代码

ffmpeg -f concat -safe 0 -i video_list.txt -c copy output.avi

但不幸的是我的脚本不能正常工作和所产生的误差是

Traceback (most recent call last):
  File "concat.py", line 20, in <module>
    "output.avi", }
  File "/usr/lib/python3.7/site-packages/ffmpy.py", line 54, in __init__
    self._cmd += _merge_args_opts(outputs)
  File "/usr/lib/python3.7/site-packages/ffmpy.py", line 187, in _merge_args_opts
    for arg, opt in args_opts_dict.items():
AttributeError: 'set' object has no attribute 'items'

任何提示,为什么命令不工作应该的方式? 我缺少关于该命令格式化ffmpy什么?

谢谢。

Answer 1:

作为一个工作的解决方法,我可以打电话与ffmpeg的一个子例程,因为ffmpy还是给了我头痛。 如果别人有这个问题,这里是我使用的代码

import os
import subprocess
import time


base_dir = "/path/to/the/files"
video_files = "video_list.txt"
output_file = "output.avi"

# where to seek the files
file_list = open(video_files, "w")

# remove prior output
try:
    os.remove(output_file)
except OSError:
    pass

# scan for the video files
start = time.time()
for root, dirs, files in os.walk(base_dir):
    for video in files:
        if video.endswith(".avi"):
            file_list.write("file './%s'\n" % video)
file_list.close()

# merge the video files
cmd = ["ffmpeg",
       "-f",
       "concat",
       "-safe",
       "0",
       "-loglevel",
       "quiet",
       "-i",
       "%s" % video_files,
       "-c",
       "copy",
       "%s" % output_file
       ]

p = subprocess.Popen(cmd, stdin=subprocess.PIPE)

fout = p.stdin
fout.close()
p.wait()

print(p.returncode)
if p.returncode != 0:
    raise subprocess.CalledProcessError(p.returncode, cmd)

end = time.time()
print("Merging the files took", end - start, "seconds.")


文章来源: ffmpy concatenate multiple files with a file list