mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	[vimeo] Fix playlist URL matching
This commit is contained in:
		| @@ -113,6 +113,8 @@ class TestAllURLsMatching(unittest.TestCase): | ||||
|     def test_vimeo_matching(self): | ||||
|         self.assertMatch('http://vimeo.com/channels/tributes', ['vimeo:channel']) | ||||
|         self.assertMatch('http://vimeo.com/user7108434', ['vimeo:user']) | ||||
|         self.assertMatch('http://vimeo.com/user7108434/videos', ['vimeo:user']) | ||||
|         self.assertMatch('https://vimeo.com/user21297594/review/75524534/3c257a1b5d', ['vimeo:review']) | ||||
|  | ||||
|     # https://github.com/rg3/youtube-dl/issues/1930 | ||||
|     def test_soundcloud_not_matching_sets(self): | ||||
|   | ||||
| @@ -318,7 +318,7 @@ class VimeoChannelIE(InfoExtractor): | ||||
|  | ||||
| class VimeoUserIE(VimeoChannelIE): | ||||
|     IE_NAME = 'vimeo:user' | ||||
|     _VALID_URL = r'(?:https?://)?vimeo.\com/(?P<name>[^/]+)(?:[#?]|$)' | ||||
|     _VALID_URL = r'(?:https?://)?vimeo.\com/(?P<name>[^/]+)(?:/videos|[#?]|$)' | ||||
|     _TITLE_RE = r'<a[^>]+?class="user">([^<>]+?)</a>' | ||||
|  | ||||
|     @classmethod | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Philipp Hagemeister
					Philipp Hagemeister