youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 9aa929d33778e9073e554421a53520f81af43eac
parent 425f3fdfcb4a559da836bbada82f2bb06d34b707
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun, 23 Oct 2016 17:20:45 +0700

[twitch:stream] Add support for rebroadcasts (closes #10995)

Diffstat:
Myoutube_dl/extractor/twitch.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/twitch.py b/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',