diff options
| author | Remita Amine <remitamine@gmail.com> | 2020-03-03 12:33:38 +0100 | 
|---|---|---|
| committer | Remita Amine <remitamine@gmail.com> | 2020-03-03 12:33:57 +0100 | 
| commit | 12ee431676bb655f04c7dd416a73c1f142ed368d (patch) | |
| tree | 33c2eabc9bede43cdfb6f478aacb69509ab016a3 | |
| parent | 46cc54ca8f13c7b823c1a12446cdd76d060c74b6 (diff) | |
[vimeo] fix showcase password protected video extraction(closes #24224)
| -rw-r--r-- | youtube_dl/extractor/vimeo.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py index 8cd611e1e..cea686afc 100644 --- a/youtube_dl/extractor/vimeo.py +++ b/youtube_dl/extractor/vimeo.py @@ -585,7 +585,7 @@ class VimeoIE(VimeoBaseInfoExtractor):                  url = 'https://vimeo.com/' + video_id          elif is_player:              url = 'https://player.vimeo.com/video/' + video_id -        elif any(p in url for p in ('play_redirect_hls', 'moogaloop.swf')): +        elif any(p in url for p in ('play_redirect_hls', 'moogaloop.swf', '/album/', '/showcase/')):              url = 'https://vimeo.com/' + video_id          try: | 
