From 38266ec5f838c803316cd5e2320278fbdcf66720 Mon Sep 17 00:00:00 2001 From: William McBrine Date: Fri, 24 Apr 2009 20:28:02 -0400 Subject: [PATCH] Some S2-compatible videos are reported as 59.94 fps by recent versions of ffmpeg. Real 59.94 files will almost (?) certainly fail other compatibility tests, so it's probably OK to pass these through. --- plugins/video/transcode.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/video/transcode.py b/plugins/video/transcode.py index 7bebb54..94cd8cc 100644 --- a/plugins/video/transcode.py +++ b/plugins/video/transcode.py @@ -440,8 +440,8 @@ def tivo_compatible_video(vInfo, tsn, mime=''): break # HD Tivo detected, skipping remaining tests. break - - if not vInfo['vFps'] == '29.97': + + if not vInfo['vFps'] in ['29.97', '59.94']: message = (False, '%s vFps, should be 29.97' % vInfo['vFps']) break -- 2.11.4.GIT