mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 07:47:08 -05:00 
			
		
		
		
	[vimeo] Better formatting for regexp
This commit is contained in:
		@@ -16,11 +16,20 @@ from ..utils import (
 | 
			
		||||
    unsmuggle_url,
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class VimeoIE(InfoExtractor):
 | 
			
		||||
    """Information extractor for vimeo.com."""
 | 
			
		||||
 | 
			
		||||
    # _VALID_URL matches Vimeo URLs
 | 
			
		||||
    _VALID_URL = r'(?P<proto>https?://)?(?:(?:www|(?P<player>player))\.)?vimeo(?P<pro>pro)?\.com/(?:.*?/)?(?P<direct_link>play_redirect_hls\?clip_id=)?(?:videos?/)?(?P<id>[0-9]+)/?(?:[?].*)?(?:#.*)?$'
 | 
			
		||||
    _VALID_URL = r'''(?x)
 | 
			
		||||
        (?P<proto>https?://)?
 | 
			
		||||
        (?:(?:www|(?P<player>player))\.)?
 | 
			
		||||
        vimeo(?P<pro>pro)?\.com/
 | 
			
		||||
        (?:.*?/)?
 | 
			
		||||
        (?P<direct_link>play_redirect_hls\?clip_id=)?
 | 
			
		||||
        (?:videos?/)?
 | 
			
		||||
        (?P<id>[0-9]+)
 | 
			
		||||
        /?(?:[?].*)?(?:[#].*)?$'''
 | 
			
		||||
    _NETRC_MACHINE = 'vimeo'
 | 
			
		||||
    IE_NAME = u'vimeo'
 | 
			
		||||
    _TESTS = [
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user