commit: 985637cbbfc1a79091eb2f5ca4afec84f6616c75
parent 7d8b89163c43dfec27dab5250183e52fce838389
Author: Sergey M․ <dstftw@gmail.com>
Date: Tue, 12 Feb 2019 00:13:50 +0700
[twitch] Add new source format detection approach (closes #19193)
Diffstat:
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/youtube_dl/extractor/twitch.py b/youtube_dl/extractor/twitch.py
@@ -136,7 +136,12 @@ class TwitchBaseIE(InfoExtractor):
source = next(f for f in formats if f['format_id'] == 'Source')
source['preference'] = 10
except StopIteration:
- pass # No Source stream present
+ for f in formats:
+ if '/chunked/' in f['url']:
+ f.update({
+ 'source_preference': 10,
+ 'format_note': 'Source',
+ })
self._sort_formats(formats)