mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +00:00 
			
		
		
		
	[ie/hytale] Use CloudflareStreamIE explicitly (#9672)
				
					
				
			Authored by: llamasblade
This commit is contained in:
		| @@ -1,7 +1,8 @@ | ||||
| import re | ||||
| 
 | ||||
| from .cloudflarestream import CloudflareStreamIE | ||||
| from .common import InfoExtractor | ||||
| from ..utils import traverse_obj | ||||
| from ..utils.traversal import traverse_obj | ||||
| 
 | ||||
| 
 | ||||
| class HytaleIE(InfoExtractor): | ||||
| @@ -49,7 +50,7 @@ class HytaleIE(InfoExtractor): | ||||
|         entries = [ | ||||
|             self.url_result( | ||||
|                 f'https://cloudflarestream.com/{video_hash}/manifest/video.mpd?parentOrigin=https%3A%2F%2Fhytale.com', | ||||
|                 title=self._titles.get(video_hash), url_transparent=True) | ||||
|                 CloudflareStreamIE, title=self._titles.get(video_hash), url_transparent=True) | ||||
|             for video_hash in re.findall( | ||||
|                 r'<stream\s+class\s*=\s*"ql-video\s+cf-stream"\s+src\s*=\s*"([a-f0-9]{32})"', | ||||
|                 webpage) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 llamasblade
					llamasblade