From ca8299241813f96b4ac27b5ac0644dddd4b35a42 Mon Sep 17 00:00:00 2001 From: William McBrine Date: Sun, 3 Feb 2008 10:34:45 -0500 Subject: [PATCH] Just to be on the safe side. --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index d0d8545..3d9c8a1 100644 --- a/config.py +++ b/config.py @@ -91,7 +91,7 @@ def getFFMPEGTemplate(tsn): return '-vcodec mpeg2video -r 29.97 -b %(video_br)s -maxrate %(max_video_br)s -bufsize %(buff_size)s %(aspect_ratio)s -comment pyTivo.py %(audio_codec)s -ab %(audio_br)s -f vob -' def getHDtivos(tsn): # tsn's of High Definition Tivo's - return tsn and tsn[:3] in ['648', '652'] + return tsn != '' and tsn[:3] in ['648', '652'] def getValidWidths(): return [1920, 1440, 1280, 720, 704, 544, 480, 352] -- 2.11.4.GIT