mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	[canalc2] Improve some regexes
This commit is contained in:
		@@ -8,7 +8,7 @@ from .common import InfoExtractor
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
class Canalc2IE(InfoExtractor):
 | 
					class Canalc2IE(InfoExtractor):
 | 
				
			||||||
    IE_NAME = 'canalc2.tv'
 | 
					    IE_NAME = 'canalc2.tv'
 | 
				
			||||||
    _VALID_URL = r'https?://(www\.)?canalc2\.tv/video/(?P<id>\d+)'
 | 
					    _VALID_URL = r'https?://(?:www\.)?canalc2\.tv/video/(?P<id>\d+)'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    _TEST = {
 | 
					    _TEST = {
 | 
				
			||||||
        'url': 'http://www.canalc2.tv/video/12163',
 | 
					        'url': 'http://www.canalc2.tv/video/12163',
 | 
				
			||||||
@@ -27,8 +27,8 @@ class Canalc2IE(InfoExtractor):
 | 
				
			|||||||
        video_id = self._match_id(url)
 | 
					        video_id = self._match_id(url)
 | 
				
			||||||
        webpage = self._download_webpage(url, video_id)
 | 
					        webpage = self._download_webpage(url, video_id)
 | 
				
			||||||
        video_url = self._search_regex(
 | 
					        video_url = self._search_regex(
 | 
				
			||||||
            r'jwplayer\("Player"\).setup\({[^}]*file: "([^"]+)"',
 | 
					            r'jwplayer\((["\'])Player\1\)\.setup\({[^}]*file\s*:\s*(["\'])(?P<file>.+?)\2',
 | 
				
			||||||
            webpage, 'video_url')
 | 
					            webpage, 'video_url', group='file')
 | 
				
			||||||
        formats = [{'url': video_url}]
 | 
					        formats = [{'url': video_url}]
 | 
				
			||||||
        if video_url.startswith('rtmp://'):
 | 
					        if video_url.startswith('rtmp://'):
 | 
				
			||||||
            rtmp = re.search(r'^(?P<url>rtmp://[^/]+/(?P<app>.+/))(?P<play_path>mp4:.+)$', video_url)
 | 
					            rtmp = re.search(r'^(?P<url>rtmp://[^/]+/(?P<app>.+/))(?P<play_path>mp4:.+)$', video_url)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user