[twitch] Prefer source format (closes #20850)
This commit is contained in:
parent
eefa0f2157
commit
60e67c5b2c
1 changed files with 2 additions and 2 deletions
|
@ -134,12 +134,12 @@ class TwitchBaseIE(InfoExtractor):
|
||||||
def _prefer_source(self, formats):
|
def _prefer_source(self, formats):
|
||||||
try:
|
try:
|
||||||
source = next(f for f in formats if f['format_id'] == 'Source')
|
source = next(f for f in formats if f['format_id'] == 'Source')
|
||||||
source['preference'] = 10
|
source['quality'] = 10
|
||||||
except StopIteration:
|
except StopIteration:
|
||||||
for f in formats:
|
for f in formats:
|
||||||
if '/chunked/' in f['url']:
|
if '/chunked/' in f['url']:
|
||||||
f.update({
|
f.update({
|
||||||
'source_preference': 10,
|
'quality': 10,
|
||||||
'format_note': 'Source',
|
'format_note': 'Source',
|
||||||
})
|
})
|
||||||
self._sort_formats(formats)
|
self._sort_formats(formats)
|
||||||
|
|
Loading…
Reference in a new issue