Browse Source

[imdb] Fix extraction

totalwebcasting
Sergey M․ 9 years ago
parent
commit
c9ac7fa909
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/imdb.py

+ 1
- 1
youtube_dl/extractor/imdb.py View File

@ -46,7 +46,7 @@ class ImdbIE(InfoExtractor):
format_info = info['videoPlayerObject']['video']
formats.append({
'format_id': f_id,
'url': format_info['url'],
'url': format_info['videoInfoList'][0]['videoUrl'],
})
return {


Loading…
Cancel
Save