diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-02-18 22:32:56 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-02-18 22:32:56 +0100 |
commit | 6d4363368affe197f1c3efbd34d18b365c3d929d (patch) | |
tree | af0afaf0591b3af592424d1b6832d194eb807102 | |
parent | 2a9983b78f170ce6695e2a0c7dbe381f1b484095 (diff) |
Fix MyVideo IE
-rwxr-xr-x | youtube_dl/InfoExtractors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index 627329ecd..d7ddf4e37 100755 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -2233,7 +2233,7 @@ class MyVideoIE(InfoExtractor): webpage = self._download_webpage(webpage_url, video_id) self.report_extraction(video_id) - mobj = re.search(r'<link rel=\'image_src\' href=\'(http://is[0-9].myvideo\.de/de/movie[0-9]+/[a-f0-9]+)/thumbs/[^.]+\.jpg\' />', + mobj = re.search(r'<link rel=\'image_src\' href=\'(http://is[0-9].myvideo\.de/de/movie[0-9]+/[a-f0-9]+)/thumbs/.*?\.jpg\' />', webpage) if mobj is None: self._downloader.trouble(u'ERROR: unable to extract media URL') |