]> jfr.im git - yt-dlp.git/blame - youtube_dlc/extractor/telecinco.py
Update to ytdl-2021.01.03
[yt-dlp.git] / youtube_dlc / extractor / telecinco.py
CommitLineData
5f6a1245 1# coding: utf-8
ad5f53ac
JMF
2from __future__ import unicode_literals
3
a098c99f
RA
4import json
5import re
ad5f53ac 6
a098c99f 7from .common import InfoExtractor
a098c99f
RA
8from ..utils import (
9 clean_html,
a098c99f
RA
10 int_or_none,
11 str_or_none,
6d475d01 12 try_get,
a098c99f 13)
ad5f53ac 14
a098c99f
RA
15
16class TelecincoIE(InfoExtractor):
4647fd89 17 IE_DESC = 'telecinco.es, cuatro.com and mediaset.es'
92519402 18 _VALID_URL = r'https?://(?:www\.)?(?:telecinco\.es|cuatro\.com|mediaset\.es)/(?:[^/]+/)+(?P<id>.+?)\.html'
ad5f53ac 19
c10ea454 20 _TESTS = [{
ad5f53ac
JMF
21 'url': 'http://www.telecinco.es/robinfood/temporada-01/t01xp14/Bacalao-cocochas-pil-pil_0_1876350223.html',
22 'info_dict': {
a098c99f 23 'id': '1876350223',
47335a0e 24 'title': 'Bacalao con kokotxas al pil-pil',
6d475d01 25 'description': 'md5:716caf5601e25c3c5ab6605b1ae71529',
ad5f53ac 26 },
a098c99f 27 'playlist': [{
29f7c58a 28 'md5': '7ee56d665cfd241c0e6d80fd175068b0',
a098c99f
RA
29 'info_dict': {
30 'id': 'JEA5ijCnF6p5W08A1rNKn7',
31 'ext': 'mp4',
32 'title': 'Con Martín Berasategui, hacer un bacalao al pil-pil es fácil y divertido',
33 'duration': 662,
34 },
35 }]
d5e7657f
S
36 }, {
37 'url': 'http://www.cuatro.com/deportes/futbol/barcelona/Leo_Messi-Champions-Roma_2_2052780128.html',
29f7c58a 38 'md5': 'c86fe0d99e3bdb46b7950d38bf6ef12a',
d5e7657f 39 'info_dict': {
47335a0e 40 'id': 'jn24Od1zGLG4XUZcnUnZB6',
d5e7657f 41 'ext': 'mp4',
47335a0e
RA
42 'title': '¿Quién es este ex futbolista con el que hablan Leo Messi y Luis Suárez?',
43 'description': 'md5:a62ecb5f1934fc787107d7b9a2262805',
d5e7657f
S
44 'duration': 79,
45 },
d492dad8
S
46 }, {
47 'url': 'http://www.mediaset.es/12meses/campanas/doylacara/conlatratanohaytrato/Ayudame-dar-cara-trata-trato_2_1986630220.html',
29f7c58a 48 'md5': 'eddb50291df704ce23c74821b995bcac',
d492dad8 49 'info_dict': {
47335a0e 50 'id': 'aywerkD2Sv1vGNqq9b85Q2',
d492dad8
S
51 'ext': 'mp4',
52 'title': '#DOYLACARA. Con la trata no hay trato',
47335a0e 53 'description': 'md5:2771356ff7bfad9179c5f5cd954f1477',
d492dad8
S
54 'duration': 50,
55 },
6d475d01
S
56 }, {
57 # video in opening's content
58 'url': 'https://www.telecinco.es/vivalavida/fiorella-sobrina-edmundo-arrocet-entrevista_18_2907195140.html',
59 'info_dict': {
60 'id': '2907195140',
61 'title': 'La surrealista entrevista a la sobrina de Edmundo Arrocet: "No puedes venir aquí y tomarnos por tontos"',
62 'description': 'md5:73f340a7320143d37ab895375b2bf13a',
63 },
64 'playlist': [{
65 'md5': 'adb28c37238b675dad0f042292f209a7',
66 'info_dict': {
67 'id': 'TpI2EttSDAReWpJ1o0NVh2',
68 'ext': 'mp4',
69 'title': 'La surrealista entrevista a la sobrina de Edmundo Arrocet: "No puedes venir aquí y tomarnos por tontos"',
70 'duration': 1015,
71 },
72 }],
73 'params': {
74 'skip_download': True,
75 },
c10ea454
JMF
76 }, {
77 'url': 'http://www.telecinco.es/informativos/nacional/Pablo_Iglesias-Informativos_Telecinco-entrevista-Pedro_Piqueras_2_1945155182.html',
78 'only_matching': True,
34a4cd0a
S
79 }, {
80 'url': 'http://www.telecinco.es/espanasinirmaslejos/Espana-gran-destino-turistico_2_1240605043.html',
81 'only_matching': True,
9d089630
S
82 }, {
83 # ooyala video
84 'url': 'http://www.cuatro.com/chesterinlove/a-carta/chester-chester_in_love-chester_edu_2_2331030022.html',
85 'only_matching': True,
c10ea454 86 }]
12bc2429 87
a098c99f
RA
88 def _parse_content(self, content, url):
89 video_id = content['dataMediaId']
a098c99f 90 config = self._download_json(
29f7c58a 91 content['dataConfig'], video_id, 'Downloading config JSON')
a098c99f 92 title = config['info']['title']
29f7c58a 93 services = config['services']
94 caronte = self._download_json(services['caronte'], video_id)
95 stream = caronte['dls'][0]['stream']
96 headers = self.geo_verification_headers()
97 headers.update({
98 'Content-Type': 'application/json;charset=UTF-8',
99 'Origin': re.match(r'https?://[^/]+', url).group(0),
100 })
101 cdn = self._download_json(
102 caronte['cerbero'], video_id, data=json.dumps({
103 'bbx': caronte['bbx'],
104 'gbx': self._download_json(services['gbx'], video_id)['gbx'],
105 }).encode(), headers=headers)['tokens']['1']['cdn']
106 formats = self._extract_m3u8_formats(
107 stream + '?' + cdn, video_id, 'mp4', 'm3u8_native', m3u8_id='hls')
a098c99f
RA
108 self._sort_formats(formats)
109
110 return {
111 'id': video_id,
112 'title': title,
113 'formats': formats,
114 'thumbnail': content.get('dataPoster') or config.get('poster', {}).get('imageUrl'),
29f7c58a 115 'duration': int_or_none(content.get('dataDuration')),
a098c99f
RA
116 }
117
12bc2429 118 def _real_extract(self, url):
47335a0e
RA
119 display_id = self._match_id(url)
120 webpage = self._download_webpage(url, display_id)
a098c99f 121 article = self._parse_json(self._search_regex(
f8cbd8c9 122 r'window\.\$REACTBASE_STATE\.article(?:_multisite)?\s*=\s*({.+})',
a098c99f
RA
123 webpage, 'article'), display_id)['article']
124 title = article.get('title')
6d475d01 125 description = clean_html(article.get('leadParagraph')) or ''
a098c99f
RA
126 if article.get('editorialType') != 'VID':
127 entries = []
6d475d01
S
128 body = [article.get('opening')]
129 body.extend(try_get(article, lambda x: x['body'], list) or [])
130 for p in body:
131 if not isinstance(p, dict):
132 continue
a098c99f 133 content = p.get('content')
6d475d01
S
134 if not content:
135 continue
136 type_ = p.get('type')
137 if type_ == 'paragraph':
138 content_str = str_or_none(content)
139 if content_str:
140 description += content_str
a098c99f 141 continue
6d475d01
S
142 if type_ == 'video' and isinstance(content, dict):
143 entries.append(self._parse_content(content, url))
a098c99f
RA
144 return self.playlist_result(
145 entries, str_or_none(article.get('id')), title, description)
146 content = article['opening']['content']
147 info = self._parse_content(content, url)
47335a0e 148 info.update({
a098c99f 149 'description': description,
47335a0e
RA
150 })
151 return info