mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[dailymail] fix format extraction(closes #17976)
This commit is contained in:
parent
7d9e858132
commit
5e733b066a
@ -49,6 +49,9 @@ def _real_extract(self, url):
|
||||
'http://www.dailymail.co.uk/api/player/%s/video-sources.json' % video_id)
|
||||
|
||||
video_sources = self._download_json(sources_url, video_id)
|
||||
body = video_sources.get('body')
|
||||
if body:
|
||||
video_sources = body
|
||||
|
||||
formats = []
|
||||
for rendition in video_sources['renditions']:
|
||||
|
Loading…
Reference in New Issue
Block a user