[vimeo] Recognize non-standard embeds (#1638)
This commit is contained in:
parent
5b6a74856b
commit
0ece114b7b
1 changed files with 5 additions and 0 deletions
|
@ -364,6 +364,11 @@ class VimeoIE(VimeoBaseInfoExtractor):
|
||||||
r'<embed[^>]+?src="((?:https?:)?//(?:www\.)?vimeo\.com/moogaloop\.swf.+?)"', webpage)
|
r'<embed[^>]+?src="((?:https?:)?//(?:www\.)?vimeo\.com/moogaloop\.swf.+?)"', webpage)
|
||||||
if mobj:
|
if mobj:
|
||||||
return mobj.group(1)
|
return mobj.group(1)
|
||||||
|
# Look more for non-standard embedded Vimeo player
|
||||||
|
mobj = re.search(
|
||||||
|
r'<video[^>]+src=(?P<q1>[\'"])(?P<url>(?:https?:)?//(?:www\.)?vimeo\.com/[0-9]+)(?P=q1)', webpage)
|
||||||
|
if mobj:
|
||||||
|
return mobj.group('url')
|
||||||
|
|
||||||
def _verify_player_video_password(self, url, video_id):
|
def _verify_player_video_password(self, url, video_id):
|
||||||
password = self._downloader.params.get('videopassword')
|
password = self._downloader.params.get('videopassword')
|
||||||
|
|
Loading…
Reference in a new issue