mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 15:14:57 +00:00
[patreon] Fix vimeo player regex (#1332)
Closes #1323 Authored by: zenerdi0de
This commit is contained in:
parent
58ab5cbc58
commit
f656a23cb1
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ class PatreonIE(InfoExtractor):
|
|||
if try_get(attributes, lambda x: x['embed']['provider']) == 'Vimeo':
|
||||
embed_html = try_get(attributes, lambda x: x['embed']['html'])
|
||||
v_url = url_or_none(compat_urllib_parse_unquote(
|
||||
self._search_regex(r'src=(https%3A%2F%2Fplayer\.vimeo\.com.+)%3F', embed_html, 'vimeo url', fatal=False)))
|
||||
self._search_regex(r'(https(?:%3A%2F%2F|://)player\.vimeo\.com.+app_id(?:=|%3D)+\d+)', embed_html, 'vimeo url', fatal=False)))
|
||||
if v_url:
|
||||
info.update({
|
||||
'_type': 'url_transparent',
|
||||
|
|
Loading…
Reference in a new issue