From 843f671dfe1f7a59223169562f5635c73c7005e6 Mon Sep 17 00:00:00 2001 From: James Bunton Date: Sun, 11 Jul 2010 20:21:25 +1000 Subject: [PATCH] Use linear blend deinterlacing, it looks much better --- encode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.2