mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +00:00 
			
		
		
		
	[extractor/cloudflarestream] Fix video_id padding (#4384)
Fixes https://github.com/ytdl-org/youtube-dl/issues/26640 Authored by: haobinliang
This commit is contained in:
		| @@ -51,7 +51,7 @@ class CloudflareStreamIE(InfoExtractor): | ||||
|         base_url = 'https://%s/%s/' % (domain, video_id) | ||||
|         if '.' in video_id: | ||||
|             video_id = self._parse_json(base64.urlsafe_b64decode( | ||||
|                 video_id.split('.')[1]), video_id)['sub'] | ||||
|                 video_id.split('.')[1] + '==='), video_id)['sub'] | ||||
|         manifest_base_url = base_url + 'manifest/video.' | ||||
| 
 | ||||
|         formats = self._extract_m3u8_formats( | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 haobinliang
					haobinliang