diff options
author | Remita Amine <remitamine@gmail.com> | 2020-03-13 08:59:10 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2020-03-13 08:59:10 +0100 |
commit | 40b6495d403a4636ea8be1dd9a2dad33c136a1e3 (patch) | |
tree | 6789e2d5a727d19e76cf3a92fc144547090adff0 | |
parent | f1a8511f7b5bbbd9e64f597c87791ad3b4310efc (diff) |
Revert "[vimeo] fix showcase password protected video extraction(closes #24224)"
This reverts commit 12ee431676bb655f04c7dd416a73c1f142ed368d.
-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 cea686afc..8cd611e1e 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', '/album/', '/showcase/')): + elif any(p in url for p in ('play_redirect_hls', 'moogaloop.swf')): url = 'https://vimeo.com/' + video_id try: |