[vimeo] Fix redirection
This commit is contained in:
parent
3a0f0c263a
commit
10831b5ec9
1 changed files with 2 additions and 0 deletions
|
@ -223,6 +223,8 @@ class VimeoIE(VimeoBaseInfoExtractor):
|
||||||
orig_url = url
|
orig_url = url
|
||||||
if mobj.group('pro') or mobj.group('player'):
|
if mobj.group('pro') or mobj.group('player'):
|
||||||
url = 'https://player.vimeo.com/video/' + video_id
|
url = 'https://player.vimeo.com/video/' + video_id
|
||||||
|
else:
|
||||||
|
url = 'https://vimeo.com/' + video_id
|
||||||
|
|
||||||
# Retrieve video webpage to extract further information
|
# Retrieve video webpage to extract further information
|
||||||
request = compat_urllib_request.Request(url, None, headers)
|
request = compat_urllib_request.Request(url, None, headers)
|
||||||
|
|
Loading…
Reference in a new issue