1
0
mirror of https://github.com/l1ving/youtube-dl synced 2026-05-28 05:59:54 +08:00

Fix HowCast IE

This commit is contained in:
Philipp Hagemeister
2013-05-23 13:34:33 +02:00
Unverified
parent 51d2453c7a
commit 8f3f1aef05
+1 -1
View File
@@ -4205,7 +4205,7 @@ class HowcastIE(InfoExtractor):
self.report_extraction(video_id)
mobj = re.search(r'\'file\': "(http://mobile-media\.howcast\.com/\d+\.mp4)"', webpage)
mobj = re.search(r'\'?file\'?: "(http://mobile-media\.howcast\.com/[0-9]+\.mp4)"', webpage)
if mobj is None:
raise ExtractorError(u'Unable to extract video URL')
video_url = mobj.group(1)