Fix 4k H265 not being transcoded

This commit is contained in:
croneter 2019-04-14 11:37:03 +02:00
parent 25c2b5e782
commit 9c4c6bf07f

View file

@ -124,6 +124,9 @@ class PlayUtils():
try: try:
resolution = int(videoCodec['resolution']) resolution = int(videoCodec['resolution'])
except (TypeError, ValueError): except (TypeError, ValueError):
if videoCodec['resolution'] == '4k':
resolution = 2160
else:
LOG.info('No video resolution from PMS, not transcoding.') LOG.info('No video resolution from PMS, not transcoding.')
return False return False
if 'h265' in codec or 'hevc' in codec: if 'h265' in codec or 'hevc' in codec: