1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-15 23:32:25 +02:00

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

This commit is contained in:
Philipp Hagemeister 2014-04-01 05:56:56 +02:00
parent 017e4dd58c
commit 5912c639df

View File

@ -1446,7 +1446,9 @@ def _real_extract(self, url):
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']