From: Jaime Marquínez Ferrándiz Date: Tue, 3 Sep 2013 09:33:59 +0000 (+0200) Subject: [dailymotion] improve the regex for extracting the video info X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=4ff7a0f1f6e6b1ad1743330d318dfe85806923b7;p=youtube-dl [dailymotion] improve the regex for extracting the video info --- diff --git a/youtube_dl/extractor/dailymotion.py b/youtube_dl/extractor/dailymotion.py index 1ea449ca8..439033d23 100644 --- a/youtube_dl/extractor/dailymotion.py +++ b/youtube_dl/extractor/dailymotion.py @@ -55,7 +55,8 @@ class DailymotionIE(InfoExtractor): embed_url = 'http://www.dailymotion.com/embed/video/%s' % video_id embed_page = self._download_webpage(embed_url, video_id, u'Downloading embed page') - info = self._search_regex(r'var info = ({.*?}),', embed_page, 'video info') + info = self._search_regex(r'var info = ({.*?}),$', embed_page, + 'video info', flags=re.MULTILINE) info = json.loads(info) # TODO: support choosing qualities