mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +00:00 
			
		
		
		
	[joj] Relax _VALID_URL (closes #16771)
This commit is contained in:
		| @@ -18,7 +18,7 @@ class JojIE(InfoExtractor): | ||||
|                         joj:| | ||||
|                         https?://media\.joj\.sk/embed/ | ||||
|                     ) | ||||
|                     (?P<id>[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}) | ||||
|                     (?P<id>[^/?#^]+) | ||||
|                 ''' | ||||
|     _TESTS = [{ | ||||
|         'url': 'https://media.joj.sk/embed/a388ec4c-6019-4a4a-9312-b1bee194e932', | ||||
| @@ -29,16 +29,24 @@ class JojIE(InfoExtractor): | ||||
|             'thumbnail': r're:^https?://.*\.jpg$', | ||||
|             'duration': 3118, | ||||
|         } | ||||
|     }, { | ||||
|         'url': 'https://media.joj.sk/embed/9i1cxv', | ||||
|         'only_matching': True, | ||||
|     }, { | ||||
|         'url': 'joj:a388ec4c-6019-4a4a-9312-b1bee194e932', | ||||
|         'only_matching': True, | ||||
|     }, { | ||||
|         'url': 'joj:9i1cxv', | ||||
|         'only_matching': True, | ||||
|     }] | ||||
|  | ||||
|     @staticmethod | ||||
|     def _extract_urls(webpage): | ||||
|         return re.findall( | ||||
|             r'<iframe\b[^>]+\bsrc=["\'](?P<url>(?:https?:)?//media\.joj\.sk/embed/[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12})', | ||||
|             webpage) | ||||
|         return [ | ||||
|             mobj.group('url') | ||||
|             for mobj in re.finditer( | ||||
|                 r'<iframe\b[^>]+\bsrc=(["\'])(?P<url>(?:https?:)?//media\.joj\.sk/embed/(?:(?!\1).)+)\1', | ||||
|                 webpage)] | ||||
|  | ||||
|     def _real_extract(self, url): | ||||
|         video_id = self._match_id(url) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․