Browse Source

[funnyordie] fix video url extraction

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

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

@ -21,7 +21,7 @@ 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="(.*?)"',
webpage, u'video URL', flags=re.DOTALL)
info = {


Loading…
Cancel
Save