commit 460dec65458968abb6b3b958f68866b2d2638ec2
parent 2a31e5e712374b132aac8fdaf9640f09b96fe393
Author: rbckman <robinbackman@gmail.com>
Date: Sat, 18 Nov 2017 06:16:12 +0000
timelaps bug fix
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tarina.py b/tarina.py
@@ -623,7 +623,7 @@ def timelapse(beeps,camera,foldername,filename,tarinafolder):
call(['avconv', '-y', '-i', renderfilename + '.wav', '-acodec', 'libmp3lame', renderfilename + '.mp3'], shell=False)
##MERGE AUDIO & VIDEO
writemessage('Merging audio & video')
- call(['MP4Box', '-add', renderfilename + '_tmp.h264', '-add', renderfilename + '.mp3', '-new', renderfilename + '.mp4'], shell=False)
+ call(['MP4Box', '-add', renderfilename + '_tmp.mp4', '-add', renderfilename + '.mp3', '-new', renderfilename + '.mp4'], shell=False)
os.system('rm ' + renderfilename + '_tmp.mp4')
else:
writemessage('No audio files found! View INSTALL file for instructions.')