diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-06-05 03:19:44 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-06-05 03:19:44 +0700 |
commit | 631d4c87ee84183917fcdf5db59e1cd1bb48d9a9 (patch) | |
tree | 29933c7f7d2b1fd914ec2eae4105677ce57f6ee4 | |
parent | 1e236d7e2350e055bbe230b12490e4369aaa0956 (diff) |
[twitch:vod] Use native hls
-rw-r--r-- | youtube_dl/extractor/twitch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/twitch.py b/youtube_dl/extractor/twitch.py index f7b98e190..d898f14c3 100644 --- a/youtube_dl/extractor/twitch.py +++ b/youtube_dl/extractor/twitch.py @@ -260,7 +260,7 @@ class TwitchVodIE(TwitchItemBaseIE): 'nauth': access_token['token'], 'nauthsig': access_token['sig'], })), - item_id, 'mp4') + item_id, 'mp4', entry_protocol='m3u8_native') self._prefer_source(formats) info['formats'] = formats |