mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	[ie/kick:clips] Support new URL format (#11107)
Closes #11105 Authored by: bashonly
This commit is contained in:
		| @@ -148,7 +148,7 @@ class KickVODIE(KickBaseIE): | ||||
| 
 | ||||
| class KickClipIE(KickBaseIE): | ||||
|     IE_NAME = 'kick:clips' | ||||
|     _VALID_URL = r'https?://(?:www\.)?kick\.com/[\w-]+/?\?(?:[^#]+&)?clip=(?P<id>clip_[\w-]+)' | ||||
|     _VALID_URL = r'https?://(?:www\.)?kick\.com/[\w-]+(?:/clips/|/?\?(?:[^#]+&)?clip=)(?P<id>clip_[\w-]+)' | ||||
|     _TESTS = [{ | ||||
|         'url': 'https://kick.com/mxddy?clip=clip_01GYXVB5Y8PWAPWCWMSBCFB05X', | ||||
|         'info_dict': { | ||||
| @@ -189,6 +189,26 @@ class KickClipIE(KickBaseIE): | ||||
|             'age_limit': 0, | ||||
|         }, | ||||
|         'params': {'skip_download': 'm3u8'}, | ||||
|     }, { | ||||
|         'url': 'https://kick.com/spreen/clips/clip_01J8RGZRKHXHXXKJEHGRM932A5', | ||||
|         'info_dict': { | ||||
|             'id': 'clip_01J8RGZRKHXHXXKJEHGRM932A5', | ||||
|             'ext': 'mp4', | ||||
|             'title': 'KLJASLDJKLJKASDLJKDAS', | ||||
|             'channel': 'spreen', | ||||
|             'channel_id': '5312671', | ||||
|             'uploader': 'AnormalBarraBaja', | ||||
|             'uploader_id': '26518262', | ||||
|             'duration': 43.0, | ||||
|             'upload_date': '20240927', | ||||
|             'timestamp': 1727399987, | ||||
|             'thumbnail': 'https://clips.kick.com/clips/f2/clip_01J8RGZRKHXHXXKJEHGRM932A5/thumbnail.webp', | ||||
|             'view_count': int, | ||||
|             'like_count': int, | ||||
|             'categories': ['Minecraft'], | ||||
|             'age_limit': 0, | ||||
|         }, | ||||
|         'params': {'skip_download': 'm3u8'}, | ||||
|     }] | ||||
| 
 | ||||
|     def _real_extract(self, url): | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 bashonly
					bashonly