diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-05-23 13:34:33 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-05-23 13:34:33 +0200 |
commit | 8f3f1aef0547b29f685068fb8ce97d374aeda421 (patch) | |
tree | e05d286edcba72047ad4a7cdbeb11be8a06a6666 /youtube_dl | |
parent | 51d2453c7ade642e7f2253ed2211824bd0a2a9ff (diff) |
Fix HowCast IE
Diffstat (limited to 'youtube_dl')
-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 42e4d0352..d318b4b03 100755 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -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) |