Browse Source

fix DailyMotion official users videos - closes #281 - by @yvestan

rtmp_test
Filippo Valsorda 12 years ago
parent
commit
4cc391461a
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      youtube_dl/InfoExtractors.py

+ 6
- 1
youtube_dl/InfoExtractors.py View File

@ -694,7 +694,12 @@ class DailymotionIE(InfoExtractor):
video_uploader = u'NA'
mobj = re.search(r'(?im)<span class="owner[^\"]+?">[^<]+?<a [^>]+?>([^<]+?)</a>', webpage)
if mobj is None:
self._downloader.trouble(u'WARNING: unable to extract uploader nickname')
# lookin for official user
mobj_official = re.search(r'<span rel="author"[^>]+?>([^<]+?)</span>', webpage)
if mobj_official is None:
self._downloader.trouble(u'WARNING: unable to extract uploader nickname')
else:
video_uploader = mobj_official.group(1)
else:
video_uploader = mobj.group(1)


Loading…
Cancel
Save