Browse Source

Fix HowCast IE

rtmp_test
Philipp Hagemeister 12 years ago
parent
commit
8f3f1aef05
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/InfoExtractors.py

+ 1
- 1
youtube_dl/InfoExtractors.py 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)


Loading…
Cancel
Save