3 from .srgssr
import SRGSSRIE
14 class RTSIE(SRGSSRIE
): # XXX: Do not subclass from concrete IE
17 _VALID_URL
= r
'rts:(?P<rts_id>\d+)|https?://(?:.+?\.)?rts\.ch/(?:[^/]+/){2,}(?P<id>[0-9]+)-(?P<display_id>.+?)\.html'
21 'url': 'http://www.rts.ch/archives/tv/divers/3449373-les-enfants-terribles.html',
22 'md5': '753b877968ad8afaeddccc374d4256a5',
25 'display_id': 'les-enfants-terribles',
28 'title': 'Les Enfants Terribles',
29 'description': 'France Pommier et sa soeur Luce Feral, les deux filles de ce groupe de 5.',
31 'upload_date': '19680921',
32 'timestamp': -40280400,
33 'thumbnail': r
're:^https?://.*\.image',
36 'expected_warnings': ['Unable to download f4m manifest', 'Failed to download m3u8 information'],
39 'url': 'http://www.rts.ch/emissions/passe-moi-les-jumelles/5624067-entre-ciel-et-mer.html',
42 'title': 'Passe-moi les jumelles',
44 'playlist_mincount': 4,
47 'url': 'http://www.rts.ch/video/sport/hockey/5745975-1-2-kloten-fribourg-5-2-second-but-pour-gotteron-par-kwiatowski.html',
50 'display_id': '1-2-kloten-fribourg-5-2-second-but-pour-gotteron-par-kwiatowski',
53 'title': '1/2, Kloten - Fribourg (5-2): second but pour Gottéron par Kwiatowski',
54 'description': 'Hockey - Playoff',
56 'upload_date': '20140403',
57 'timestamp': 1396556882,
58 'thumbnail': r
're:^https?://.*\.image',
63 'skip_download': True,
65 'expected_warnings': ['Unable to download f4m manifest', 'Failed to download m3u8 information'],
66 'skip': 'Blocked outside Switzerland',
69 'url': 'http://www.rts.ch/video/info/journal-continu/5745356-londres-cachee-par-un-epais-smog.html',
70 'md5': '9bb06503773c07ce83d3cbd793cebb91',
73 'display_id': 'londres-cachee-par-un-epais-smog',
76 'title': 'Londres cachée par un épais smog',
77 'description': 'Un important voile de smog recouvre Londres depuis mercredi, provoqué par la pollution et du sable du Sahara.',
78 'uploader': 'L\'actu en vidéo',
79 'upload_date': '20140403',
80 'timestamp': 1396537322,
81 'thumbnail': r
're:^https?://.*\.image',
84 'expected_warnings': ['Unable to download f4m manifest', 'Failed to download m3u8 information'],
87 'url': 'http://www.rts.ch/audio/couleur3/programmes/la-belle-video-de-stephane-laurenceau/5706148-urban-hippie-de-damien-krisl-03-04-2014.html',
88 'md5': 'dd8ef6a22dff163d063e2a52bc8adcae',
91 'display_id': 'urban-hippie-de-damien-krisl-03-04-2014',
94 'title': '"Urban Hippie", de Damien Krisl',
95 'description': 'Des Hippies super glam.',
96 'upload_date': '20140403',
97 'timestamp': 1396551600,
101 # article with videos on rhs
102 'url': 'http://www.rts.ch/sport/hockey/6693917-hockey-davos-decroche-son-31e-titre-de-champion-de-suisse.html',
105 'title': 'Hockey: Davos décroche son 31e titre de champion de Suisse',
107 'playlist_mincount': 5,
110 'url': 'http://pages.rts.ch/emissions/passe-moi-les-jumelles/5624065-entre-ciel-et-mer.html',
111 'only_matching': True,
115 def _real_extract(self
, url
):
116 m
= self
._match
_valid
_url
(url
)
117 media_id
= m
.group('rts_id') or m
.group('id')
118 display_id
= m
.group('display_id') or media_id
120 def download_json(internal_id
):
121 return self
._download
_json
(
122 f
'http://www.rts.ch/a/{internal_id}.html?f=json/article',
125 all_info
= download_json(media_id
)
127 # media_id extracted out of URL is not always a real id
128 if 'video' not in all_info
and 'audio' not in all_info
:
131 for item
in all_info
.get('items', []):
132 item_url
= item
.get('url')
135 entries
.append(self
.url_result(item_url
, 'RTS'))
138 page
, urlh
= self
._download
_webpage
_handle
(url
, display_id
)
139 if re
.match(self
._VALID
_URL
, urlh
.url
).group('id') != media_id
:
140 return self
.url_result(urlh
.url
, 'RTS')
142 # article with videos on rhs
144 r
'<article[^>]+class="content-item"[^>]*>\s*<a[^>]+data-video-urn="urn:([^"]+)"',
148 r
'(?s)<iframe[^>]+class="srg-player"[^>]+src="[^"]+urn:([^"]+)"',
151 entries
= [self
.url_result(f
'srgssr:{video_urn}', 'SRGSSR') for video_urn
in videos
]
154 return self
.playlist_result(entries
, media_id
, all_info
.get('title'))
156 internal_id
= self
._html
_search
_regex
(
157 r
'<(?:video|audio) data-id="([0-9]+)"', page
,
159 all_info
= download_json(internal_id
)
161 media_type
= 'video' if 'video' in all_info
else 'audio'
164 self
._get
_media
_data
('rts', media_type
, media_id
)
166 info
= all_info
['video']['JSONinfo'] if 'video' in all_info
else all_info
['audio']
168 title
= info
['title']
170 def extract_bitrate(url
):
171 return int_or_none(self
._search
_regex
(
172 r
'-([0-9]+)k\.', url
, 'bitrate', default
=None))
175 streams
= info
.get('streams', {})
176 for format_id
, format_url
in streams
.items():
177 if format_id
== 'hds_sd' and 'hds' in streams
:
179 if format_id
== 'hls_sd' and 'hls' in streams
:
181 ext
= determine_ext(format_url
)
182 if ext
in ('m3u8', 'f4m'):
183 format_url
= self
._get
_tokenized
_src
(format_url
, media_id
, format_id
)
185 formats
.extend(self
._extract
_f
4m
_formats
(
186 format_url
+ ('?' if '?' not in format_url
else '&') + 'hdcore=3.4.0',
187 media_id
, f4m_id
=format_id
, fatal
=False))
189 formats
.extend(self
._extract
_m
3u8_formats
(
190 format_url
, media_id
, 'mp4', 'm3u8_native', m3u8_id
=format_id
, fatal
=False))
193 'format_id': format_id
,
195 'tbr': extract_bitrate(format_url
),
198 download_base
= 'http://rtsww{}-d.rts.ch/'.format('-a' if media_type
== 'audio' else '')
199 for media
in info
.get('media', []):
200 media_url
= media
.get('url')
201 if not media_url
or re
.match(r
'https?://', media_url
):
203 rate
= media
.get('rate')
204 ext
= media
.get('ext') or determine_ext(media_url
, 'mp4')
207 format_id
+= '-%dk' % rate
209 'format_id': format_id
,
210 'url': urljoin(download_base
, media_url
),
211 'tbr': rate
or extract_bitrate(media_url
),
214 self
._check
_formats
(formats
, media_id
)
216 duration
= info
.get('duration') or info
.get('cutout') or info
.get('cutduration')
217 if isinstance(duration
, str):
218 duration
= parse_duration(duration
)
222 'display_id': display_id
,
225 'description': info
.get('intro'),
226 'duration': duration
,
227 'view_count': int_or_none(info
.get('plays')),
228 'uploader': info
.get('programName'),
229 'timestamp': parse_iso8601(info
.get('broadcast_date')),
230 'thumbnail': unescapeHTML(info
.get('preview_image_url')),