diff --git a/yt_dlp/extractor/threespeak.py b/yt_dlp/extractor/threespeak.py index 32ea177864..8246b5173b 100644 --- a/yt_dlp/extractor/threespeak.py +++ b/yt_dlp/extractor/threespeak.py @@ -46,17 +46,6 @@ def _real_extract(self, url): f'https://ipfs.3speak.tv/ipfs/{ipfs_m3u8}', video_id, fatal=False, m3u8_id='ipfs') formats.extend(ipfs_frmts) subtitles = self._merge_subtitles(subtitles, ipfs_subs) - mp4_file = try_get(video_json, lambda x: x['video']['info']['file']) - if mp4_file: - formats.append({ - 'url': f'https://threespeakvideo.b-cdn.net/{video_id}/{mp4_file}', - 'ext': 'mp4', - 'format_id': 'https-mp4', - 'duration': try_get(video_json, lambda x: x['video']['info']['duration']), - 'filesize': try_get(video_json, lambda x: x['video']['info']['filesize']), - 'quality': 11, - 'format_note': 'Original file', - }) return { 'id': video_id, 'title': data_json.get('title') or data_json.get('root_title'),