aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-02-18 22:32:56 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2013-02-18 22:32:56 +0100
commit6d4363368affe197f1c3efbd34d18b365c3d929d (patch)
treeaf0afaf0591b3af592424d1b6832d194eb807102
parent2a9983b78f170ce6695e2a0c7dbe381f1b484095 (diff)
downloadyoutube-dl-6d4363368affe197f1c3efbd34d18b365c3d929d.tar.xz
Fix MyVideo IE
-rwxr-xr-xyoutube_dl/InfoExtractors.py2
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')