diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-04-01 05:56:56 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-04-01 05:56:56 +0200 |
commit | 5912c639df1b3fe6c14b488d77cb619fa808de75 (patch) | |
tree | 6f5a28d32f5ac31b17ffce395e11831c8877e222 /youtube_dl | |
parent | 017e4dd58ce4ebc2dbd3deb724d416e0f3f9e0ec (diff) |
[youtube] Transform google's JSON dialect (fixes #2663)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/youtube.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 6384095f9..856a9a596 100644 --- 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'] |