[hytale] Use CloudflareStreamIE explicitly

Since CloudflareStreamIE is always used as the "final" extractor,
making explicit use of it doesn't require yt-dlp to find the correct
one itself.
This commit is contained in:
Ludovico Gerardi 2024-04-11 17:44:21 +02:00
parent 168e72dcd3
commit 5b5891e48e
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,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)
ie='CloudflareStream', 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)