1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-30 21:21:11 +02:00

[twitch:stream] Clarify channel_id reassignment rationale (#6263)

This commit is contained in:
Sergey M․ 2015-07-18 06:27:45 +06:00
parent 1793d71db6
commit 0696667734

View File

@ -346,6 +346,10 @@ def _real_extract(self, url):
'http://www.twitch.tv/%s/profile' % channel_id,
'TwitchProfile', channel_id)
# Channel name may be typed if different case than the original channel name
# (e.g. http://www.twitch.tv/TWITCHPLAYSPOKEMON) that will lead to constructing
# an invalid m3u8 URL. Working around by use of original channel name from stream
# JSON and fallback to lowercase if it's not available.
channel_id = stream.get('channel', {}).get('name') or channel_id.lower()
access_token = self._download_json(