diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2015-02-17 21:46:20 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2015-02-17 21:46:20 +0100 |
commit | fa156077737d5162795a221fe2995a276d31c6d3 (patch) | |
tree | e2a9cd731879aaedbaf8ba439d8c37d9c95aaa00 /youtube_dl/extractor/twitch.py | |
parent | 16e7711e22648027739096560914a976b8eea786 (diff) |
PEP8 fixes
Diffstat (limited to 'youtube_dl/extractor/twitch.py')
-rw-r--r-- | youtube_dl/extractor/twitch.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/extractor/twitch.py b/youtube_dl/extractor/twitch.py index 8e296698e..4b0d8988d 100644 --- a/youtube_dl/extractor/twitch.py +++ b/youtube_dl/extractor/twitch.py @@ -348,6 +348,7 @@ class TwitchStreamIE(TwitchBaseIE): '%s/api/channel/hls/%s.m3u8?%s' % (self._USHER_BASE, channel_id, compat_urllib_parse.urlencode(query).encode('utf-8')), channel_id, 'mp4') + # prefer the 'source' stream, the others are limited to 30 fps def _sort_source(f): if f.get('m3u8_media') is not None and f['m3u8_media'].get('NAME') == 'Source': |