From: James Bunton Date: Sat, 18 Sep 2010 13:45:33 +0000 (+1000) Subject: Fixed bug in x264/copyac3 X-Git-Url: https://code.delx.au/transcoding/commitdiff_plain/1ed01efcec794b87acd65726f58dc2101810f6c1 Fixed bug in x264/copyac3 --- diff --git a/encode.py b/encode.py index f0f30d3..31cc0de 100755 --- a/encode.py +++ b/encode.py @@ -222,7 +222,7 @@ class MencoderCopyAC3(Command): cmd += ["-of", "rawaudio", "-o", "audio.ac3"] insert_mplayer_options(cmd, self.opts) cmd += self.profile.extra - self.do_exec(cmd, wait=False) + self.do_exec(cmd) class X264(Command):