mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 23:35:04 +00:00
[twitch:stream] Add support for rebroadcasts (closes #10995)
This commit is contained in:
parent
425f3fdfcb
commit
9aa929d337
1 changed files with 2 additions and 1 deletions
|
@ -398,7 +398,7 @@ def _real_extract(self, url):
|
||||||
channel_id = self._match_id(url)
|
channel_id = self._match_id(url)
|
||||||
|
|
||||||
stream = self._call_api(
|
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')
|
'Downloading stream JSON').get('stream')
|
||||||
|
|
||||||
if not stream:
|
if not stream:
|
||||||
|
@ -417,6 +417,7 @@ def _real_extract(self, url):
|
||||||
query = {
|
query = {
|
||||||
'allow_source': 'true',
|
'allow_source': 'true',
|
||||||
'allow_audio_only': 'true',
|
'allow_audio_only': 'true',
|
||||||
|
'allow_spectre': 'true',
|
||||||
'p': random.randint(1000000, 10000000),
|
'p': random.randint(1000000, 10000000),
|
||||||
'player': 'twitchweb',
|
'player': 'twitchweb',
|
||||||
'segment_preference': '4',
|
'segment_preference': '4',
|
||||||
|
|
Loading…
Reference in a new issue