diff options
author | Rogério Brito <rbrito@ime.usp.br> | 2011-04-20 21:15:57 -0300 |
---|---|---|
committer | Rogério Brito <rbrito@ime.usp.br> | 2011-04-20 21:15:57 -0300 |
commit | 1e055db69ccffbacad5765887f14879bbe350ce2 (patch) | |
tree | 8bd7a3953c927b300b814b0538a26de0c7a2b3c6 | |
parent | 0ecedbdb036120849c2a7eb992ec8a993221e5f1 (diff) |
vimeo: Ignore if we are using HTTP/S or not.
-rwxr-xr-x | youtube-dl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube-dl b/youtube-dl index 080490ded..17fb82da7 100755 --- a/youtube-dl +++ b/youtube-dl @@ -1724,7 +1724,7 @@ class VimeoIE(InfoExtractor): """Information extractor for vimeo.com.""" # _VALID_URL matches Vimeo URLs - _VALID_URL = r'(?:http://)?(?:(?:www|player).)?vimeo\.com/(?:video/)?([0-9]+)' + _VALID_URL = r'(?:https?://)?(?:(?:www|player).)?vimeo\.com/(?:video/)?([0-9]+)' def __init__(self, downloader=None): InfoExtractor.__init__(self, downloader) |