Browse Source

[funnyordie] Fix video url extraction

rtmp_test
Jaime Marquínez Ferrándiz 11 years ago
parent
commit
1a810f0d4e
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      youtube_dl/extractor/funnyordie.py

+ 2
- 1
youtube_dl/extractor/funnyordie.py View File

@ -21,7 +21,8 @@ class FunnyOrDieIE(InfoExtractor):
video_id = mobj.group('id')
webpage = self._download_webpage(url, video_id)
video_url = self._search_regex(r'type="video/mp4" src="(.*?)"',
video_url = self._search_regex(
[r'type="video/mp4" src="(.*?)"', r'src="([^>]*?)" type=\'video/mp4\''],
webpage, u'video URL', flags=re.DOTALL)
info = {


Loading…
Cancel
Save