mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +00:00 
			
		
		
		
	[extractor/SovietsCloset] Fix extractor (#4688)
Closes #4200 Authored by: ChillingPepper
This commit is contained in:
		| @@ -44,7 +44,7 @@ class SovietsClosetIE(SovietsClosetBaseIE): | ||||
|     _TESTS = [ | ||||
|         { | ||||
|             'url': 'https://sovietscloset.com/video/1337', | ||||
|             'md5': '11e58781c4ca5b283307aa54db5b3f93', | ||||
|             'md5': 'bd012b04b261725510ca5383074cdd55', | ||||
|             'info_dict': { | ||||
|                 'id': '1337', | ||||
|                 'ext': 'mp4', | ||||
| @@ -69,11 +69,11 @@ class SovietsClosetIE(SovietsClosetBaseIE): | ||||
|         }, | ||||
|         { | ||||
|             'url': 'https://sovietscloset.com/video/1105', | ||||
|             'md5': '578b1958a379e7110ba38697042e9efb', | ||||
|             'md5': '89fa928f183893cb65a0b7be846d8a90', | ||||
|             'info_dict': { | ||||
|                 'id': '1105', | ||||
|                 'ext': 'mp4', | ||||
|                 'title': 'Arma 3 - Zeus Games #3', | ||||
|                 'title': 'Arma 3 - Zeus Games #5', | ||||
|                 'uploader': 'SovietWomble', | ||||
|                 'thumbnail': r're:^https?://.*\.b-cdn\.net/c0e5e76f-3a93-40b4-bf01-12343c2eec5d/thumbnail\.jpg$', | ||||
|                 'uploader': 'SovietWomble', | ||||
| @@ -89,8 +89,8 @@ class SovietsClosetIE(SovietsClosetBaseIE): | ||||
|                 'availability': 'public', | ||||
|                 'series': 'Arma 3', | ||||
|                 'season': 'Zeus Games', | ||||
|                 'episode_number': 3, | ||||
|                 'episode': 'Episode 3', | ||||
|                 'episode_number': 5, | ||||
|                 'episode': 'Episode 5', | ||||
|             }, | ||||
|         }, | ||||
|     ] | ||||
| @@ -122,7 +122,7 @@ class SovietsClosetIE(SovietsClosetBaseIE): | ||||
|         video_id = self._match_id(url) | ||||
|         webpage = self._download_webpage(url, video_id) | ||||
| 
 | ||||
|         static_assets_base = self._search_regex(r'staticAssetsBase:\"(.*?)\"', webpage, 'staticAssetsBase') | ||||
|         static_assets_base = self._search_regex(r'(/_nuxt/static/\d+)', webpage, 'staticAssetsBase') | ||||
|         static_assets_base = f'https://sovietscloset.com{static_assets_base}' | ||||
| 
 | ||||
|         stream = self.parse_nuxt_jsonp(f'{static_assets_base}/video/{video_id}/payload.js', video_id, 'video')['stream'] | ||||
| @@ -181,7 +181,7 @@ class SovietsClosetPlaylistIE(SovietsClosetBaseIE): | ||||
| 
 | ||||
|         webpage = self._download_webpage(url, playlist_id) | ||||
| 
 | ||||
|         static_assets_base = self._search_regex(r'staticAssetsBase:\"(.*?)\"', webpage, 'staticAssetsBase') | ||||
|         static_assets_base = self._search_regex(r'(/_nuxt/static/\d+)', webpage, 'staticAssetsBase') | ||||
|         static_assets_base = f'https://sovietscloset.com{static_assets_base}' | ||||
| 
 | ||||
|         sovietscloset = self.parse_nuxt_jsonp(f'{static_assets_base}/payload.js', playlist_id, 'global')['games'] | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 ChillingPepper
					ChillingPepper