[funnyordie] fix video url extraction
This commit is contained in:
parent
07ac9e2cc2
commit
c247d87ef3
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ class FunnyOrDieIE(InfoExtractor):
|
||||||
video_id = mobj.group('id')
|
video_id = mobj.group('id')
|
||||||
webpage = self._download_webpage(url, video_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)
|
webpage, u'video URL', flags=re.DOTALL)
|
||||||
|
|
||||||
info = {
|
info = {
|
||||||
|
|
Loading…
Reference in a new issue