From 78ef302eedee036a70ecbeba215320dc813b790b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Ko=CC=88rner?= Date: Sun, 25 Nov 2018 14:00:57 +0100 Subject: [PATCH] preserve audio out of apple motion --- make-apple-motion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make-apple-motion.py b/make-apple-motion.py index 9bee599..0de15c6 100755 --- a/make-apple-motion.py +++ b/make-apple-motion.py @@ -177,7 +177,7 @@ def finalize_job(job_id, event): shutil.copy(intermediate_clip, copy_clip) - run('ffmpeg -y -hide_banner -loglevel error -i "{input}" -f lavfi -i anullsrc -ar 48000 -ac 2 -map 0:v -c:v mpeg2video -q:v 0 -aspect 16:9 -map 1:a -map 1:a -map 1:a -map 1:a -shortest -f mpegts "{output}"', + run('ffmpeg -y -hide_banner -loglevel error -i "{input}" -map 0:v -c:v mpeg2video -q:v 0 -aspect 16:9 -map 0:a -map 0:a -map 0:a -map 0:a -shortest -f mpegts "{output}"', input=intermediate_clip, output=final_clip)