Remove borken save_as_gif lines

This commit is contained in:
Grant Sanderson 2019-07-24 20:36:44 -07:00
parent 36be369901
commit 61bb4944fa

View file

@ -313,18 +313,9 @@ class SceneFileWriter(object):
'-safe', '0',
'-i', file_list,
'-loglevel', 'error',
'-c', 'copy',
movie_file_path
]
if not self.save_as_gif:
commands +=[
'-c', 'copy',
movie_file_path
]
if self.save_as_gif:
movie_file_path=self.gif_file_path
commands +=[
movie_file_path,
]
if not self.includes_sound:
commands.insert(-1, '-an')