1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-12-17 21:48:54 +00:00

[ie/threespeak] Extractor fix

This commit is contained in:
src-tinkerer
2024-07-29 11:05:03 +00:00
committed by GitHub
parent ef36d517f9
commit c140c63faa

View File

@@ -46,17 +46,6 @@ class ThreeSpeakIE(InfoExtractor):
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'),