1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-06 10:59:36 +02:00

[atresplayer] Extract HD manifest

This commit is contained in:
zurfyx 2017-03-25 01:08:47 +01:00 committed by Sergey M․
parent 1088d76da6
commit 048086920b
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D

View File

@ -161,7 +161,8 @@ def _real_extract(self, url):
# this videos are protected by DRM, the f4m downloader doesn't support them
continue
else:
f4m_url = video_url[:-9] + '/manifest.f4m'
video_url_hd = video_url.replace('free_es', 'es')
f4m_url = video_url_hd[:-9] + '/manifest.f4m'
formats.extend(self._extract_f4m_formats(f4m_url, video_id, f4m_id='hds', fatal=False))
self._sort_formats(formats)