From 70bd1942828f607cce07082a67b5a7fd1e16642a Mon Sep 17 00:00:00 2001 From: wgw Date: Sat, 3 May 2008 16:27:46 -0500 Subject: [PATCH] fix for unnecessary transcode of 16:9 on 649 --- plugins/video/transcode.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/video/transcode.py b/plugins/video/transcode.py index ca6c256..e1ae06a 100644 --- a/plugins/video/transcode.py +++ b/plugins/video/transcode.py @@ -372,7 +372,8 @@ def tivo_compatable(inFile, tsn = ''): debug_write(__name__, fn_attr(), ['FALSE,', fps, 'fps, should be 29.97.', inFile]) return False - if not config.get169Setting(tsn) or (config.get169Letterbox(tsn) and config.get169Setting(tsn)): + if (config.get169Blacklist(tsn) and not config.get169Setting(tsn))\ + or (config.get169Letterbox(tsn) and config.get169Setting(tsn)): if dar1 == None or not dar1 in ('4:3', '8:9'): debug_write(__name__, fn_attr(), ['FALSE, DAR', dar1, 'not supported by BLACKLIST_169 tivos.', inFile]) return False -- 2.11.4.GIT