mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 23:25:06 +00:00
[vimeo] Use https for player.vimeo.com urls (closes #5147)
This commit is contained in:
parent
d1508cd68d
commit
61e00a9775
1 changed files with 1 additions and 1 deletions
|
@ -222,7 +222,7 @@ def _real_extract(self, url):
|
|||
video_id = mobj.group('id')
|
||||
orig_url = url
|
||||
if mobj.group('pro') or mobj.group('player'):
|
||||
url = 'http://player.vimeo.com/video/' + video_id
|
||||
url = 'https://player.vimeo.com/video/' + video_id
|
||||
|
||||
# Retrieve video webpage to extract further information
|
||||
request = compat_urllib_request.Request(url, None, headers)
|
||||
|
|
Loading…
Reference in a new issue