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

pull/2739/head
Mike Fährmann 2 years ago
parent 127a190c94
commit 124b5c6410
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -3567,7 +3567,7 @@ ugoira.mtime
Type
``bool``
Default
``false``
``true``
Description
Set modification times of generated ugoira aniomations.

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2017-2021 Mike Fährmann
# Copyright 2017-2022 Mike Fährmann
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as

@ -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"

Loading…
Cancel
Save