diff --git a/yt_dlp/extractor/pandavideo.py b/yt_dlp/extractor/pandavideo.py index c24144279..7fc2ad8a6 100644 --- a/yt_dlp/extractor/pandavideo.py +++ b/yt_dlp/extractor/pandavideo.py @@ -73,5 +73,4 @@ def _real_extract(self, url: str) -> dict: f'https://{server}.tv.pandavideo.com.br/{video_id}/playlist.m3u8', video_id, 'mp4', m3u8_id='hls'), 'title': self._html_search_regex(r'([^<]+)', webpage, 'title', default=f'pandavideo_{video_id}', fatal=False), 'description': self._html_search_meta('description', webpage, 'description', default=None, fatal=False), - 'formats': self._extract_m3u8_formats(manifest_url, video_id), }