From: James Bunton Date: Sun, 11 Jul 2010 10:21:25 +0000 (+1000) Subject: Use linear blend deinterlacing, it looks much better X-Git-Url: https://code.delx.au/transcoding/commitdiff_plain/843f671dfe1f7a59223169562f5635c73c7005e6 Use linear blend deinterlacing, it looks much better --- diff --git a/encode.py b/encode.py index 04ebfe8..29daa95 100755 --- a/encode.py +++ b/encode.py @@ -80,7 +80,7 @@ class Mencoder(Command): cmd.append(opt) cmd.append(var) if self.opts.deinterlace: - cmd += ["-vf-add", "pp=ci"] + cmd += ["-vf-add", "pp=lb"] try_opt("-ss", self.opts.startpos) try_opt("-endpos", self.opts.endpos) try_opt("-dvd-device", self.opts.dvd)