add additional options to pass into ffmpeg. #1619

This commit is contained in:
clinton-hall 2019-06-06 21:46:56 +12:00
parent 8c45e76507
commit fd1149aea1
3 changed files with 12 additions and 1 deletions

View file

@ -493,6 +493,8 @@ def build_commands(file, new_dir, movie_name, bitbucket):
if core.OUTPUTFASTSTART:
other_cmd.extend(['-movflags', '+faststart'])
if core.OTHEROPTS:
other_cmd.extend(core.OTHEROPTS)
command = [core.FFMPEG, '-loglevel', 'warning']