vimeo: Also accept URLs prefixed by www.
I hope that this doesn't break anything. `:)`pull/130/merge^2
parent
f24c674b04
commit
8cc98b2358
|
@ -1723,7 +1723,7 @@ class VimeoIE(InfoExtractor):
|
|||
"""Information extractor for vimeo.com."""
|
||||
|
||||
# _VALID_URL matches Vimeo URLs
|
||||
_VALID_URL = r'(?:http://)?vimeo\.com/([0-9]+)'
|
||||
_VALID_URL = r'(?:http://)?(?:www.)?vimeo\.com/([0-9]+)'
|
||||
|
||||
def __init__(self, downloader=None):
|
||||
InfoExtractor.__init__(self, downloader)
|
||||
|
|
Loading…
Reference in New Issue