aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-03-08 16:54:11 +0600
committerSergey M․ <dstftw@gmail.com>2015-03-08 16:54:11 +0600
commitd34e79492d1d9d9babf85af3737b90c4fe55eb42 (patch)
treef60210f6fe9fec1c2147855024cad72d90c0dca3
parent7dcad95d4faa91adfaa4d87d411c4bc55ab000e4 (diff)
downloadyoutube-dl-d34e79492d1d9d9babf85af3737b90c4fe55eb42.tar.xz
[twitch] Fix live streams (Closes #5158)
-rw-r--r--youtube_dl/extractor/twitch.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/youtube_dl/extractor/twitch.py b/youtube_dl/extractor/twitch.py
index b058891bd..cbdaf9c7a 100644
--- a/youtube_dl/extractor/twitch.py
+++ b/youtube_dl/extractor/twitch.py
@@ -358,13 +358,12 @@ class TwitchStreamIE(TwitchBaseIE):
'p': random.randint(1000000, 10000000),
'player': 'twitchweb',
'segment_preference': '4',
- 'sig': access_token['sig'],
- 'token': access_token['token'],
+ 'sig': access_token['sig'].encode('utf-8'),
+ 'token': access_token['token'].encode('utf-8'),
}
-
formats = self._extract_m3u8_formats(
'%s/api/channel/hls/%s.m3u8?%s'
- % (self._USHER_BASE, channel_id, compat_urllib_parse.urlencode(query).encode('utf-8')),
+ % (self._USHER_BASE, channel_id, compat_urllib_parse.urlencode(query)),
channel_id, 'mp4')
self._prefer_source(formats)