From 85d55ea522cbf162e4138b55f3613ca25394f3a7 Mon Sep 17 00:00:00 2001 From: CasperMcFadden95 <145611964+CasperMcFadden95@users.noreply.github.com> Date: Wed, 18 Jun 2025 18:59:41 +0000 Subject: [PATCH] Update yt_dlp/extractor/dzsecurity.py Co-authored-by: D Trombett --- yt_dlp/extractor/dzsecurity.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/yt_dlp/extractor/dzsecurity.py b/yt_dlp/extractor/dzsecurity.py index 9b889dccb..0ac452d2b 100644 --- a/yt_dlp/extractor/dzsecurity.py +++ b/yt_dlp/extractor/dzsecurity.py @@ -75,9 +75,6 @@ def _real_extract(self, url): return { 'id': stream_id, 'title': title, - 'formats': self._extract_m3u8_formats( - m3u8_url, stream_id, ext='mp4', entry_protocol='m3u8', - m3u8_id='hls', fatal=True, - ), + 'formats': self._extract_m3u8_formats(m3u8_url, stream_id), 'is_live': True, }