aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-01-23 16:39:23 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-01-23 16:39:23 +0100
commit0920e5830f890580ec16cdd10bfe8def73a1a09f (patch)
treea477d8a57ab23382aa21c0bf97eef5b0352721ad
parentbf7fa94ec7202bde963a75ab903996ac575910db (diff)
downloadyoutube-dl-0920e5830f890580ec16cdd10bfe8def73a1a09f.tar.xz
[atresplayer] Don't include f4m formats if they are protected by DRM (fixes #4705)
-rw-r--r--youtube_dl/extractor/atresplayer.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/youtube_dl/extractor/atresplayer.py b/youtube_dl/extractor/atresplayer.py
index 5db1941b3..37321ef1d 100644
--- a/youtube_dl/extractor/atresplayer.py
+++ b/youtube_dl/extractor/atresplayer.py
@@ -107,7 +107,14 @@ class AtresPlayerIE(InfoExtractor):
for _, video_url in fmt_json['resultObject'].items():
if video_url.endswith('/Manifest'):
- formats.extend(self._extract_f4m_formats(video_url[:-9] + '/manifest.f4m', video_id))
+ if 'geodeswowsmpra3player' in video_url:
+ f4m_path = video_url.split('smil:', 1)[-1].split('free_', 1)[0]
+ f4m_url = 'http://drg.antena3.com/{0}hds/es/sd.f4m'.format(f4m_path)
+ # this videos are protected by DRM, the f4m downloader doesn't support them
+ continue
+ else:
+ f4m_url = video_url[:-9] + '/manifest.f4m'
+ formats.extend(self._extract_f4m_formats(f4m_url, video_id))
else:
formats.append({
'url': video_url,