mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-07 10:57:59 +09:00
[vimeo] Always pass in referer (Fixes #3582)
This commit is contained in:
parent
b8313f07bc
commit
ba5d51b340
@ -151,6 +151,19 @@ class VimeoIE(VimeoBaseInfoExtractor, SubtitlesInfoExtractor):
|
|||||||
'duration': 62,
|
'duration': 62,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
'note': 'video player needs Referer',
|
||||||
|
'url': 'http://vimeo.com/user22258446/review/91613211/13f927e053',
|
||||||
|
'md5': '6295fdab8f4bf6a002d058b2c6dce276',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '91613211',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'Death by dogma versus assembling agile - Sander Hoogendoorn',
|
||||||
|
'uploader': 'DevWeek Events',
|
||||||
|
'duration': 2773,
|
||||||
|
'thumbnail': 're:^https?://.*\.jpg$',
|
||||||
|
}
|
||||||
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
@ -205,6 +218,8 @@ class VimeoIE(VimeoBaseInfoExtractor, SubtitlesInfoExtractor):
|
|||||||
if data is not None:
|
if data is not None:
|
||||||
headers = headers.copy()
|
headers = headers.copy()
|
||||||
headers.update(data)
|
headers.update(data)
|
||||||
|
if 'Referer' not in headers:
|
||||||
|
headers['Referer'] = url
|
||||||
|
|
||||||
# Extract ID from URL
|
# Extract ID from URL
|
||||||
mobj = re.match(self._VALID_URL, url)
|
mobj = re.match(self._VALID_URL, url)
|
||||||
|
Loading…
Reference in New Issue
Block a user