mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[extractor/common] Added support for f4m manifest Version 2.0
This commit is contained in:
parent
2c63ccec78
commit
34e48bed3b
@ -648,6 +648,8 @@ def _extract_f4m_formats(self, manifest_url, video_id):
|
||||
|
||||
formats = []
|
||||
media_nodes = manifest.findall('{http://ns.adobe.com/f4m/1.0}media')
|
||||
if not media_nodes:
|
||||
media_nodes = manifest.findall('{http://ns.adobe.com/f4m/2.0}media')
|
||||
for i, media_el in enumerate(media_nodes):
|
||||
tbr = int_or_none(media_el.attrib.get('bitrate'))
|
||||
format_id = 'f4m-%d' % (i if tbr is None else tbr)
|
||||
|
Loading…
Reference in New Issue
Block a user