Sergey M․
8 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
2 additions and
1 deletions
-
youtube_dl/extractor/twitch.py
|
|
@ -398,7 +398,7 @@ class TwitchStreamIE(TwitchBaseIE): |
|
|
|
channel_id = self._match_id(url) |
|
|
|
|
|
|
|
stream = self._call_api( |
|
|
|
'kraken/streams/%s' % channel_id, channel_id, |
|
|
|
'kraken/streams/%s?stream_type=all' % channel_id, channel_id, |
|
|
|
'Downloading stream JSON').get('stream') |
|
|
|
|
|
|
|
if not stream: |
|
|
@ -417,6 +417,7 @@ class TwitchStreamIE(TwitchBaseIE): |
|
|
|
query = { |
|
|
|
'allow_source': 'true', |
|
|
|
'allow_audio_only': 'true', |
|
|
|
'allow_spectre': 'true', |
|
|
|
'p': random.randint(1000000, 10000000), |
|
|
|
'player': 'twitchweb', |
|
|
|
'segment_preference': '4', |
|
|
|