From: Rogério Brito Date: Thu, 21 Apr 2011 00:15:57 +0000 (-0300) Subject: vimeo: Ignore if we are using HTTP/S or not. X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=1e055db69ccffbacad5765887f14879bbe350ce2;p=youtube-dl vimeo: Ignore if we are using HTTP/S or not. --- 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)