Browse Source

Extract thumbnail with _og_search_thumbnail

totalwebcasting
ruuk 11 years ago
parent
commit
54ab193970
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/metacafe.py

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

@ -166,7 +166,7 @@ class MetacafeIE(InfoExtractor):
video_title = self._html_search_regex(r'(?im)<title>(.*) - Video</title>', webpage, u'title')
description = self._og_search_description(webpage)
thumbnail = self._html_search_regex(r'<meta property="og:image" content="([^"].+?)(?is)"', webpage, u'thumbnail',default='')
thumbnail = self._og_search_thumbnail(webpage)
video_uploader = self._html_search_regex(
r'submitter=(.*?);|googletag\.pubads\(\)\.setTargeting\("(?:channel|submiter)","([^"]+)"\);',
webpage, u'uploader nickname', fatal=False)


Loading…
Cancel
Save