From 0efcd36abc1c343c7fe8771bb3191f7fc0587d22 Mon Sep 17 00:00:00 2001 From: wgw Date: Sat, 15 Mar 2008 12:08:15 -0500 Subject: [PATCH] dts not tivo compatible --- plugins/video/transcode.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins/video/transcode.py b/plugins/video/transcode.py index 46fd862..7205294 100644 --- a/plugins/video/transcode.py +++ b/plugins/video/transcode.py @@ -294,6 +294,10 @@ def tivo_compatable(inFile, tsn = ''): debug_write(__name__, fn_attr(), ['FALSE, transport stream not supported.', inFile]) return False + if acodec == 'dca': + debug_write(__name__, fn_attr(), ['FALSE, acodec', acodec, ', not supported.', inFile]) + return False + if not akbps or int(akbps) > config.getMaxAudioBR(tsn): debug_write(__name__, fn_attr(), ['FALSE,', akbps, 'kbps exceeds max audio bitrate.', inFile]) return False -- 2.11.4.GIT