vimeo: Make regexp more robust.
authorRogério Brito <rbrito@ime.usp.br>
Thu, 17 Feb 2011 10:25:45 +0000 (08:25 -0200)
committerRogério Brito <rbrito@ime.usp.br>
Thu, 17 Feb 2011 10:25:45 +0000 (08:25 -0200)
This change makes the VimeoIE work with http://player.vimeo.com/video/19267888

youtube-dl

index 16d234e..780a6d9 100755 (executable)
@@ -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)