mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-18 01:35:12 +00:00
[vimeo] extract both mixed and separated dash formats
This commit is contained in:
parent
dadb836139
commit
ae9a173b64
1 changed files with 13 additions and 4 deletions
|
@ -142,8 +142,17 @@ def _parse_config(self, config, video_id):
|
||||||
note='Downloading %s m3u8 information' % cdn_name,
|
note='Downloading %s m3u8 information' % cdn_name,
|
||||||
fatal=False))
|
fatal=False))
|
||||||
elif files_type == 'dash':
|
elif files_type == 'dash':
|
||||||
|
mpd_pattern = r'/%s/(?:sep/)?video/' % video_id
|
||||||
|
mpd_manifest_urls = []
|
||||||
|
if re.search(mpd_pattern, manifest_url):
|
||||||
|
for suffix, repl in (('', 'video'), ('_sep', 'sep/video')):
|
||||||
|
mpd_manifest_urls.append((format_id + suffix, re.sub(
|
||||||
|
mpd_pattern, '/%s/%s/' % (video_id, repl), manifest_url)))
|
||||||
|
else:
|
||||||
|
mpd_manifest_urls = [(format_id, manifest_url)]
|
||||||
|
for f_id, m_url in mpd_manifest_urls:
|
||||||
formats.extend(self._extract_mpd_formats(
|
formats.extend(self._extract_mpd_formats(
|
||||||
manifest_url.replace('/master.json', '/master.mpd'), video_id, format_id,
|
m_url.replace('/master.json', '/master.mpd'), video_id, f_id,
|
||||||
'Downloading %s MPD information' % cdn_name,
|
'Downloading %s MPD information' % cdn_name,
|
||||||
fatal=False))
|
fatal=False))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue