Browse Source

Make the Dailymotion uploader regexp more flexible because it fails sometimes

rtmp_test
Ricardo Garcia 14 years ago
parent
commit
7e2dd306fe
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube-dl

+ 1
- 1
youtube-dl View File

@ -1149,7 +1149,7 @@ class DailymotionIE(InfoExtractor):
video_title = mobj.group(1).decode('utf-8')
video_title = sanitize_title(video_title)
mobj = re.search(r'(?im)<div class="dmco_html owner"><a class="name" href="/.+">(.+?)</a></div>', webpage)
mobj = re.search(r'(?im)<div class="dmco_html owner">.*?<a class="name" href="/.+?">(.+?)</a></div>', webpage)
if mobj is None:
self._downloader.trouble(u'ERROR: unable to extract uploader nickname')
return


Loading…
Cancel
Save