logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: 1793d71db61acc9f6cceefbc63d7de2b558b7582
parent 4211e1941b39cb153505c64ab8fcb31a762674d1
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat, 18 Jul 2015 06:18:03 +0600

[twitch:stream] Fix channel_id in different case (Closes #6263)

Diffstat:

Myoutube_dl/extractor/twitch.py2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/extractor/twitch.py b/youtube_dl/extractor/twitch.py @@ -346,6 +346,8 @@ class TwitchStreamIE(TwitchBaseIE): 'http://www.twitch.tv/%s/profile' % channel_id, 'TwitchProfile', channel_id) + channel_id = stream.get('channel', {}).get('name') or channel_id.lower() + access_token = self._download_json( '%s/api/channels/%s/access_token' % (self._API_BASE, channel_id), channel_id, 'Downloading channel access token')