This commit is contained in:
Zen 2020-01-11 11:18:45 +02:00
parent c6fcf8c939
commit 654915ac4c

View file

@ -143,7 +143,7 @@ def encode(commands):
Popen(cmd, shell=True).wait() Popen(cmd, shell=True).wait()
def concat(input_video): def concatenate_video(input_video):
""" """
Using FFMPEG to concatenate all encoded videos to 1 file. Using FFMPEG to concatenate all encoded videos to 1 file.
Reading all files in A-Z order and saving it to concat.txt Reading all files in A-Z order and saving it to concat.txt
@ -198,7 +198,7 @@ def main(arg):
bar.tick() bar.tick()
# Merging all encoded videos to 1 # Merging all encoded videos to 1
concat(arg.input_file) concatenate_video(arg.input_file)
if __name__ == '__main__': if __name__ == '__main__':