From 96466c203b088d6f687c3e6eed3f9ba5dbdb70f8 Mon Sep 17 00:00:00 2001 From: MaZderMind Date: Wed, 9 Apr 2014 22:53:49 +0200 Subject: [PATCH] fix aspect ratio --- 2014/make.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2014/make.py b/2014/make.py index 65b759c..39cd4bd 100755 --- a/2014/make.py +++ b/2014/make.py @@ -249,7 +249,7 @@ def render(infile, outfile, sequence, parameters={}, workdir='artwork'): # invoke avconv aka ffmpeg and renerate a lossles-dv from the frames # if we're not in debug-mode, suppress all output - os.system('cd {0} && avconv -ar 48000 -ac 2 -f s16le -i /dev/zero -f image2 -i .frames/%04d.png -target pal-dv -shortest "{1}"'.format(workdir, outfile) + ('' if debug else '>/dev/null 2>&1')) + os.system('cd {0} && avconv -ar 48000 -ac 2 -f s16le -i /dev/zero -f image2 -i .frames/%04d.png -target pal-dv -aspect 16:9 -shortest "{1}"'.format(workdir, outfile) + ('' if debug else '>/dev/null 2>&1')) # as before, in non-debug-mode the thread-worker does all progress messages if debug: