1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-18 02:59:31 +00:00

vimeo: Make regexp more robust.

This change makes the VimeoIE work with http://player.vimeo.com/video/19267888
This commit is contained in:
Rogério Brito 2011-02-17 08:25:45 -02:00
parent 8cc98b2358
commit a7e5259c33

View file

@ -1723,7 +1723,7 @@ class VimeoIE(InfoExtractor):
"""Information extractor for vimeo.com."""
# _VALID_URL matches Vimeo URLs
_VALID_URL = r'(?:http://)?(?:www.)?vimeo\.com/([0-9]+)'
_VALID_URL = r'(?:http://)?(?:(?:www|player).)?vimeo\.com/(?:video/)?([0-9]+)'
def __init__(self, downloader=None):
InfoExtractor.__init__(self, downloader)