[vimeo] Fix redirection

This commit is contained in:
pulpe 2015-04-28 14:56:48 +02:00
parent 3a0f0c263a
commit 10831b5ec9
1 changed files with 2 additions and 0 deletions

View File

@ -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)