[postprocessor:ugoira] enable 'mtime' by default (#2714)

This commit is contained in:
Mike Fährmann
2022-06-29 22:35:34 +02:00
parent 127a190c94
commit 124b5c6410
3 changed files with 3 additions and 3 deletions

View File

@@ -35,7 +35,7 @@ class UgoiraPP(PostProcessor):
self.output = options.get("ffmpeg-output", True)
self.delete = not options.get("keep-files", False)
self.repeat = options.get("repeat-last-frame", True)
self.mtime = options.get("mtime")
self.mtime = options.get("mtime", True)
ffmpeg = options.get("ffmpeg-location")
self.ffmpeg = util.expand_path(ffmpeg) if ffmpeg else "ffmpeg"