youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 048086920bdb92cc5d63847e9e1d2fd645910363
parent 1088d76da6cbc83d64faca5a1a987944af04b0ce
Author: zurfyx <zurfyx@gmail.com>
Date:   Sat, 25 Mar 2017 01:08:47 +0100

[atresplayer] Extract HD manifest

Diffstat:
Myoutube_dl/extractor/atresplayer.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/atresplayer.py b/youtube_dl/extractor/atresplayer.py @@ -161,7 +161,8 @@ class AtresPlayerIE(InfoExtractor): # 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)