[dailymail] fix format extraction(closes #17976)

This commit is contained in:
Remita Amine 2018-10-26 05:41:57 +01:00
parent 7d9e858132
commit 5e733b066a
1 changed files with 3 additions and 0 deletions

View File

@ -49,6 +49,9 @@ class DailyMailIE(InfoExtractor):
'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']: