Fichier final au format MPEG-4
This commit is contained in:
parent
f2b77697da
commit
c58ef4c305
@ -270,6 +270,14 @@ def create_mkv(filename):
|
|||||||
remove(file)
|
remove(file)
|
||||||
|
|
||||||
|
|
||||||
|
def mkv_to_mp4(filename):
|
||||||
|
options = "-c:a copy -c:v copy -c:s copy -movflags faststart"
|
||||||
|
command = f"ffmpeg -i {filename}_FINAL.mkv {options} -y NEW_{filename}.mp4"
|
||||||
|
result = subprocess.getoutput(command)
|
||||||
|
logging.debug(result)
|
||||||
|
remove(f"{filename}_FINAL.mkv")
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
import argparse
|
import argparse
|
||||||
parser = argparse.ArgumentParser()
|
parser = argparse.ArgumentParser()
|
||||||
@ -308,3 +316,4 @@ if __name__ == '__main__':
|
|||||||
convert_video(file, infos, vid_part_time, cropsize, crf, animation)
|
convert_video(file, infos, vid_part_time, cropsize, crf, animation)
|
||||||
vid_part_time += 300
|
vid_part_time += 300
|
||||||
create_mkv(file)
|
create_mkv(file)
|
||||||
|
mkv_to_mp4(file)
|
||||||
|
Loading…
Reference in New Issue
Block a user