Browse Source

[nuevo] Improve thumbnail extraction

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

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

@ -16,7 +16,7 @@ class NuevoBaseIE(InfoExtractor):
title = xpath_text(config, './title', 'title', fatal=True).strip()
video_id = xpath_text(config, './mediaid', default=video_id)
thumbnail = xpath_text(config, './image')
thumbnail = xpath_text(config, ['./image', './thumb'])
duration = float_or_none(xpath_text(config, './duration'))
formats = []


Loading…
Cancel
Save