From: James Bunton Date: Wed, 15 Sep 2010 15:18:41 +0000 (+1000) Subject: Improved MencoderDemux X-Git-Url: https://code.delx.au/transcoding/commitdiff_plain/e5157e53fd38700e8c75a4361f842bfc5a938104 Improved MencoderDemux --- diff --git a/encode.py b/encode.py index 708cf6e..a46a642 100755 --- a/encode.py +++ b/encode.py @@ -336,7 +336,7 @@ class MencoderDemux(Command): p = self.profile cmd = ["mencoder", "-ovc", "copy", "-oac", "copy", o.output + ".avi"] - cmd += ["-noconfig", "all"] + cmd += ["-noconfig", "all", "-noskip", "-mc", "0"] self.do_exec(cmd + ["-of", "rawaudio", "-o", p.audio_tmp]) self.do_exec(cmd + ["-of", "rawvideo", "-o", p.video_tmp]) self.do_exec(["rm", "-f", o.output + ".avi"])