From 8abf76ddb90c83a5afd7517d4797f3c07bd1cf0f Mon Sep 17 00:00:00 2001 From: Laurent Raufaste Date: Tue, 29 Nov 2011 22:30:42 -0500 Subject: [PATCH] Fix the DailymotionIE to parse the new title of a webpage --- youtube-dl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube-dl b/youtube-dl index 8c4c320df..042b85267 100755 --- a/youtube-dl +++ b/youtube-dl @@ -1618,7 +1618,7 @@ class DailymotionIE(InfoExtractor): video_url = mediaURL - mobj = re.search(r'(?im)Dailymotion\s*-\s*(.+)\s*-\s*[^<]+?', webpage) + mobj = re.search(r'(?im)\s*(.+)\s*-\s*Video\s+Dailymotion', webpage) if mobj is None: self._downloader.trouble(u'ERROR: unable to extract title') return