1
0
mirror of https://codeberg.org/polarisfm/youtube-dl synced 2025-02-18 10:07:55 +01:00

Using class="name" when class="owner" does not exists to obtain the uploader name

This commit is contained in:
Pierre-Yves Langlois 2012-04-23 13:05:06 -04:00
parent 2b8ee7c239
commit eda204a2dc

View File

@ -1749,11 +1749,13 @@ class DailymotionIE(InfoExtractor):
video_title = _unescapeHTML(mobj.group('title').decode('utf-8'))
video_title = sanitize_title(video_title)
simple_title = _simplify_title(video_title)
mobj = re.search(r'(?im)<span class="owner[^\"]+?">[^<]+?<a [^>]+?>([^<]+?)</a></span>', webpage)
spanowner = re.search(r'(?im)<span class="owner[^\"]+?">[^<]+?<a [^>]+?>([^<]+?)</a></span>', webpage)
spanname = re.search(r'(?im)<span class="name[^\"]+?"[^\>]+?>([^\>]+?)</span>', webpage)
mobj = spanowner if spanowner else spanname
if mobj is None:
video_uploader = "Unknown"
#you need to use -i option to discard this error
#you need to use -i option to discard this error and continue with the download
self._downloader.trouble(u'WARNING: unable to extract uploader nickname')
else:
video_uploader = mobj.group(1)