ffmpy объединяет несколько файлов со списком файлов - PullRequest
0 голосов
/ 09 ноября 2018

В настоящее время я пытаюсь объединить несколько видеофайлов с помощью скрипта Python, используя ffmpeg и ffmpy. Имена файлов записываются в список файлов, как предложено вики ffmpeg concatenate .

В моем примере я использую только два файла, но на практике будет несколько файлов 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?

Спасибо.

1 Ответ

0 голосов
/ 10 ноября 2018

В качестве рабочего обходного пути я смог вызвать 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.")
...