mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +00:00 
			
		
		
		
	[extractor/gronkh] Fix _VALID_URL (#5628)
				
					
				
			Closes #5531 Authored by: muddi900
This commit is contained in:
		| @@ -9,15 +9,26 @@ from ..utils import ( | ||||
| 
 | ||||
| 
 | ||||
| class GronkhIE(InfoExtractor): | ||||
|     _VALID_URL = r'https?://(?:www\.)?gronkh\.tv/(?:watch/)?stream/(?P<id>\d+)' | ||||
|     _VALID_URL = r'https?://(?:www\.)?gronkh\.tv/(?:watch/)?streams?/(?P<id>\d+)' | ||||
| 
 | ||||
|     _TESTS = [{ | ||||
|         'url': 'https://gronkh.tv/streams/657', | ||||
|         'info_dict': { | ||||
|             'id': '657', | ||||
|             'ext': 'mp4', | ||||
|             'title': 'H.O.R.D.E. - DAS ZWEiTE ZEiTALTER 🎲 Session 1', | ||||
|             'view_count': int, | ||||
|             'thumbnail': 'https://01.cdn.vod.farm/preview/9e2555d3a23bf4e5c5b7c6b3b70a9d84.jpg', | ||||
|             'upload_date': '20221111' | ||||
|         }, | ||||
|         'params': {'skip_download': True} | ||||
|     }, { | ||||
|         'url': 'https://gronkh.tv/stream/536', | ||||
|         'info_dict': { | ||||
|             'id': '536', | ||||
|             'ext': 'mp4', | ||||
|             'title': 'GTV0536, 2021-10-01 - MARTHA IS DEAD  #FREiAB1830  !FF7 !horde !archiv', | ||||
|             'view_count': 19491, | ||||
|             'view_count': int, | ||||
|             'thumbnail': 'https://01.cdn.vod.farm/preview/6436746cce14e25f751260a692872b9b.jpg', | ||||
|             'upload_date': '20211001' | ||||
|         }, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Mudassir Chapra
					Mudassir Chapra