1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-06-27 17:08:32 +00:00

removed extra line 'formats'

This commit is contained in:
Iuri Campos 2025-06-01 18:22:45 +01:00
parent 24a6366f5e
commit 31c6081b7c

View File

@ -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'<title>([^<]+)</title>', 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),
}