Browse Source

Fix dailymotion support (closes #60)

Ricardo Garcia 14 years ago
parent
commit
c02d8e4040
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube-dl

+ 1 - 1
youtube-dl

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