[generic] Extract m3u8 formats from JSON-LD

This commit is contained in:
pukkandan 2021-12-18 04:16:40 +05:30
parent 75ad33572b
commit e6ae51c123
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698
1 changed files with 4 additions and 0 deletions

View File

@ -3653,6 +3653,10 @@ class GenericIE(InfoExtractor):
json_ld = self._search_json_ld(webpage, video_id, default={})
if json_ld.get('url'):
self.report_detected('JSON LD')
if determine_ext(json_ld.get('url')) == 'm3u8':
json_ld['formats'], json_ld['subtitles'] = self._extract_m3u8_formats_and_subtitles(
json_ld['url'], video_id, 'mp4')
json_ld.pop('url')
return merge_dicts(json_ld, info_dict)
def check_video(vurl):