From 1ca8a464732af98fc6e6f8b81eaa14f9729fe1c3 Mon Sep 17 00:00:00 2001 From: Draic Date: Sat, 23 Dec 2017 16:42:40 +0100 Subject: [PATCH] Hi10p should only trigger on h264 changed h265 to h264 as this should be the intended codec. --- resources/lib/playutils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lib/playutils.py b/resources/lib/playutils.py index 97ce2322..26fe8163 100644 --- a/resources/lib/playutils.py +++ b/resources/lib/playutils.py @@ -140,8 +140,8 @@ class PlayUtils(): return False if ((settings('transcodeHi10P') == 'true' and videoCodec['bitDepth'] == '10') and - ('h265' in codec or 'hevc' in codec)): - log.info('Option to transcode 10bit h265 video content enabled.') + ('h264' in codec)): + log.info('Option to transcode 10bit h264 video content enabled.') return True try: bitrate = int(videoCodec['bitrate'])