Fix auto-picking of video stream if several video versions are available
This commit is contained in:
parent
a5a587f2b6
commit
f3b97e42f8
3 changed files with 7 additions and 1 deletions
|
@ -665,6 +665,11 @@ msgctxt "#30545"
|
|||
msgid "Force transcode pictures"
|
||||
msgstr ""
|
||||
|
||||
# PKC Settings - Playback
|
||||
msgctxt "#30546"
|
||||
msgid "Pick the first video if several versions are present"
|
||||
msgstr ""
|
||||
|
||||
# Welcome to Plex notification
|
||||
msgctxt "#33000"
|
||||
msgid "Welcome"
|
||||
|
|
|
@ -205,7 +205,7 @@ class Media(object):
|
|||
count += 1
|
||||
if (count > 1 and (
|
||||
(self.plex_type != v.PLEX_TYPE_CLIP and
|
||||
utils.settings('bestQuality') == 'false')
|
||||
utils.settings('firstVideoStream') == 'false')
|
||||
or
|
||||
(self.plex_type == v.PLEX_TYPE_CLIP and
|
||||
utils.settings('bestTrailer') == 'false'))):
|
||||
|
|
|
@ -114,6 +114,7 @@
|
|||
<setting id="askCinema" type="bool" label="30519" default="false" visible="eq(-1,true)" subsetting="true" />
|
||||
<setting id="trailerNumber" type="slider" label="39000" default="3" visible="eq(-2,true)" range="1,1,15" option="int" />
|
||||
<setting id="enableSkipIntro" type="bool" label="30525" default="true" /><!-- Enable skipping of intros -->
|
||||
<setting id="firstVideoStream" type="bool" label="30546" default="false" /><!-- Pick the first video if several versions are present -->
|
||||
<setting id="ignoreSpecialsNextEpisodes" type="bool" label="30527" default="false" />
|
||||
<setting id="resumeJumpBack" type="slider" label="30521" default="10" range="0,1,120" option="int" visible="false"/>
|
||||
<setting type="sep" />
|
||||
|
|
Loading…
Reference in a new issue