diff options
author | David Caldwell <david+github@porkrind.org> | 2019-07-03 09:22:23 -0700 |
---|---|---|
committer | Sergey M <dstftw@gmail.com> | 2019-07-03 23:22:23 +0700 |
commit | 2da4316e48475c344be862149f744c3a8a1ab2f1 (patch) | |
tree | e43e3b63e9776d6f13b863c6f315fe860753a650 /youtube_dl/extractor/twitch.py | |
parent | 313877c6a2b5ac8b880a9c47e8038ea0cdcf3deb (diff) |
[twitch:vod] Actualize m3u8 URL (#21538, #21607)
Diffstat (limited to 'youtube_dl/extractor/twitch.py')
-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 dc5ff29c3..0500e33a6 100644 --- a/youtube_dl/extractor/twitch.py +++ b/youtube_dl/extractor/twitch.py @@ -317,7 +317,7 @@ class TwitchVodIE(TwitchItemBaseIE): 'Downloading %s access token' % self._ITEM_TYPE) formats = self._extract_m3u8_formats( - '%s/vod/%s?%s' % ( + '%s/vod/%s.m3u8?%s' % ( self._USHER_BASE, item_id, compat_urllib_parse_urlencode({ 'allow_source': 'true', |