Browse Source

[funnyordie] Fix extraction (Closes #4011)

totalwebcasting
Sergey M․ 10 years ago
parent
commit
75da98e9e1
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

@ -37,7 +37,7 @@ class FunnyOrDieIE(InfoExtractor):
video_id = mobj.group('id')
webpage = self._download_webpage(url, video_id)
links = re.findall(r'<source src="([^"]+/v)\d+\.([^"]+)" type=\'video', webpage)
links = re.findall(r'<source src="([^"]+/v)[^"]+\.([^"]+)" type=\'video', webpage)
if not links:
raise ExtractorError('No media links available for %s' % video_id)


Loading…
Cancel
Save