youtube-dl

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

commit bb512e57dc138b261cf9c71a833b0df5d5ba849f
parent 23e7cba87fbcec9aa2b1fbccf60c2d560df3d7ad
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date:   Sun, 28 Jun 2015 13:25:59 +0800

[twitch:vod] Fix 'Source' format in m3u8 (closes #6115)

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

diff --git a/youtube_dl/extractor/twitch.py b/youtube_dl/extractor/twitch.py @@ -215,7 +215,7 @@ class TwitchVodIE(TwitchItemBaseIE): '%s/api/vods/%s/access_token' % (self._API_BASE, item_id), item_id, 'Downloading %s access token' % self._ITEM_TYPE) formats = self._extract_m3u8_formats( - '%s/vod/%s?nauth=%s&nauthsig=%s' + '%s/vod/%s?nauth=%s&nauthsig=%s&allow_source=true' % (self._USHER_BASE, item_id, access_token['token'], access_token['sig']), item_id, 'mp4') self._prefer_source(formats)