youtube-dl

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

commit 5912c639df1b3fe6c14b488d77cb619fa808de75
parent 017e4dd58ce4ebc2dbd3deb724d416e0f3f9e0ec
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Tue,  1 Apr 2014 05:56:56 +0200

[youtube] Transform google's JSON dialect (fixes #2663)

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

diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py @@ -1446,7 +1446,9 @@ class YoutubePlaylistIE(YoutubeBaseInfoExtractor): break more = self._download_json( - 'https://youtube.com/%s' % mobj.group('more'), playlist_id, 'Downloading page #%s' % page_num) + 'https://youtube.com/%s' % mobj.group('more'), playlist_id, + 'Downloading page #%s' % page_num, + transform_source=uppercase_escape) content_html = more['content_html'] more_widget_html = more['load_more_widget_html']