mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-25 02:29:40 +00:00
naming
This commit is contained in:
parent
c6fcf8c939
commit
654915ac4c
1 changed files with 2 additions and 2 deletions
4
main.py
4
main.py
|
@ -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__':
|
||||||
|
|
Loading…
Reference in a new issue