From 5f5126e1b154eaa5004f7a7ea76e687f01aac82f Mon Sep 17 00:00:00 2001 From: William McBrine Date: Sun, 30 Dec 2007 14:04:55 -0500 Subject: [PATCH] Added valid HD heights and widths --- config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.py b/config.py index 6dc258e..795b472 100644 --- a/config.py +++ b/config.py @@ -99,10 +99,10 @@ 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 -ac 2 -ab %(audio_br)s -ar 44100 -f vob -' def getValidWidths(): - return [1440, 720, 704, 544, 480, 352] + return [1920, 1440, 1280, 720, 704, 544, 480, 352] def getValidHeights(): - return [720, 480] # Technically 240 is also supported + return [1080, 720, 480] # Technically 240 is also supported # Return the number in list that is nearest to x # if two values are equidistant, return the larger -- 2.11.4.GIT