diff options
| author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-09-03 11:33:59 +0200 | 
|---|---|---|
| committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-09-03 11:33:59 +0200 | 
| commit | 4ff7a0f1f6e6b1ad1743330d318dfe85806923b7 (patch) | |
| tree | af42a67e1d219ad4a53c938d0a8e62f7505646e3 | |
| parent | 9c2ade40de53bae865c5267642651c81d16e48a8 (diff) | |
[dailymotion] improve the regex for extracting the video info
| -rw-r--r-- | youtube_dl/extractor/dailymotion.py | 3 | 
1 files changed, 2 insertions, 1 deletions
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  | 
