diff options
| author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-07-09 14:38:27 +0800 | 
|---|---|---|
| committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-07-09 14:38:27 +0800 | 
| commit | 0ece114b7b3c9f7277adbd77de17534e39137675 (patch) | |
| tree | bac2857bb965faa1382adcb0c24322f9b8a8b51f | |
| parent | 5b6a74856babce30e9e72701259f790322281d3a (diff) | |
[vimeo] Recognize non-standard embeds (#1638)
| -rw-r--r-- | youtube_dl/extractor/vimeo.py | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py index d9c9852d4..7e854f326 100644 --- a/youtube_dl/extractor/vimeo.py +++ b/youtube_dl/extractor/vimeo.py @@ -364,6 +364,11 @@ class VimeoIE(VimeoBaseInfoExtractor):              r'<embed[^>]+?src="((?:https?:)?//(?:www\.)?vimeo\.com/moogaloop\.swf.+?)"', webpage)          if mobj:              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):          password = self._downloader.params.get('videopassword')  | 
