summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-05-15 05:01:39 +0200
committerJules Laplace <julescarbon@gmail.com>2018-05-15 05:01:39 +0200
commit32152a078eb3c01d4a3908d3be127400dd2366b0 (patch)
treed40072c759c5e98c5367d820a19d8e465eb84cd8
parent9d2058a49356ff91cd9da62acf77d8a41f87bd27 (diff)
testy
-rw-r--r--test-mogrify.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-mogrify.py b/test-mogrify.py
index f2b2b3d..7289187 100644
--- a/test-mogrify.py
+++ b/test-mogrify.py
@@ -111,7 +111,7 @@ if __name__ == '__main__':
frame_fn = "ren_%05d.png"
video_fn = tag + "_mogrify.mp4"
- if opt.mov_file:
+ if opt.mov_file is not None and opt.mov_file != 'video.mp4':
video_fn = opt.mov_file + '.mp4'
cmd = ("ffmpeg", "-i", render_dir + frame_fn, "-y", "-c:v", "libx264", "-vf", "fps=30", "-pix_fmt", "yuv420p", "-s", "456x256", render_dir + video_fn)