mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-05-27 11:26:13 +00:00
settings: Add an option to transcode VC-1
This commit is contained in:
parent
fea6fc4cf1
commit
0fc908ec85
3 changed files with 11 additions and 0 deletions
|
@ -319,6 +319,9 @@ class PlayUtils(object):
|
|||
if settings('transcode_mpeg2.bool'):
|
||||
codecs.remove('mpeg2video')
|
||||
|
||||
if settings('transcode_vc1.bool'):
|
||||
codecs.remove('vc1')
|
||||
|
||||
return ','.join(codecs)
|
||||
|
||||
def get_transcoding_video_codec(self):
|
||||
|
@ -334,6 +337,9 @@ class PlayUtils(object):
|
|||
if settings('transcode_mpeg2.bool'):
|
||||
codecs.remove('mpeg2video')
|
||||
|
||||
if settings('transcode_vc1.bool'):
|
||||
codecs.remove('vc1')
|
||||
|
||||
return ','.join(codecs)
|
||||
|
||||
def get_transcoding_audio_codec(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue