[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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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'),