mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-12 10:11:02 +01:00
[vimeo] Fix redirection
This commit is contained in:
parent
3a0f0c263a
commit
10831b5ec9
@ -223,6 +223,8 @@ class VimeoIE(VimeoBaseInfoExtractor):
|
||||
orig_url = url
|
||||
if mobj.group('pro') or mobj.group('player'):
|
||||
url = 'https://player.vimeo.com/video/' + video_id
|
||||
else:
|
||||
url = 'https://vimeo.com/' + video_id
|
||||
|
||||
# Retrieve video webpage to extract further information
|
||||
request = compat_urllib_request.Request(url, None, headers)
|
||||
|
Loading…
Reference in New Issue
Block a user