[ie/yle_areena] Fix subtitle extraction (#10379)

Authored by: Grub4K
This commit is contained in:
Simon Sawicki 2024-07-07 21:21:00 +02:00 committed by GitHub
parent 4862a29854
commit 0d174e8bed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -110,10 +110,12 @@ def _real_extract(self, url):
'ie_key': KalturaIE.ie_key(),
}
else:
formats, subs = self._extract_m3u8_formats_and_subtitles(
video_data['data']['ongoing_ondemand']['manifest_url'], video_id, 'mp4', m3u8_id='hls')
self._merge_subtitles(subs, target=subtitles)
info_dict = {
'id': video_id,
'formats': self._extract_m3u8_formats(
video_data['data']['ongoing_ondemand']['manifest_url'], video_id, 'mp4', m3u8_id='hls'),
'formats': formats,
}
return {
@ -129,6 +131,6 @@ def _real_extract(self, url):
or int_or_none(episode_number)),
'thumbnails': traverse_obj(info, ('thumbnails', ..., {'url': 'url'})),
'age_limit': traverse_obj(video_data, ('data', 'ongoing_ondemand', 'content_rating', 'age_restriction'), expected_type=int_or_none),
'subtitles': subtitles,
'subtitles': subtitles or None,
'release_date': unified_strdate(traverse_obj(video_data, ('data', 'ongoing_ondemand', 'start_time'), expected_type=str)),
}