Skip to content

Commit

Permalink
[vimeo] fix vimeo pro embed extraction(closes #29126)
Browse files Browse the repository at this point in the history
  • Loading branch information
remitamine committed May 26, 2021
1 parent dfbbe29 commit 1980ff4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/extractor/vimeo.py
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ def _real_extract(self, url):
expected=True)
raise

if '://player.vimeo.com/video/' in url:
if '//player.vimeo.com/video/' in url:
config = self._parse_json(self._search_regex(
r'\bconfig\s*=\s*({.+?})\s*;', webpage, 'info section'), video_id)
if config.get('view') == 4:
Expand Down

0 comments on commit 1980ff4

Please sign in to comment.