| 
									
										
										
										
											2014-03-24 01:41:14 +01:00
										 |  |  | # coding: utf-8 | 
					
						
							|  |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-05 15:57:10 +01:00
										 |  |  | from .srgssr import SRGSSRIE | 
					
						
							| 
									
										
										
										
											2016-12-10 10:47:19 +01:00
										 |  |  | from ..compat import compat_str | 
					
						
							| 
									
										
										
										
											2014-03-24 01:41:14 +01:00
										 |  |  | from ..utils import ( | 
					
						
							|  |  |  |     int_or_none, | 
					
						
							|  |  |  |     parse_duration, | 
					
						
							|  |  |  |     parse_iso8601, | 
					
						
							|  |  |  |     unescapeHTML, | 
					
						
							| 
									
										
										
										
											2016-12-10 10:47:19 +01:00
										 |  |  |     determine_ext, | 
					
						
							| 
									
										
										
										
											2014-03-24 01:41:14 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-05 15:57:10 +01:00
										 |  |  | class RTSIE(SRGSSRIE): | 
					
						
							| 
									
										
										
										
											2014-03-24 01:41:14 +01:00
										 |  |  |     IE_DESC = 'RTS.ch' | 
					
						
							| 
									
										
										
										
											2016-12-10 10:47:19 +01:00
										 |  |  |     _VALID_URL = r'rts:(?P<rts_id>\d+)|https?://(?:.+?\.)?rts\.ch/(?:[^/]+/){2,}(?P<id>[0-9]+)-(?P<display_id>.+?)\.html' | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     _TESTS = [ | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             'url': 'http://www.rts.ch/archives/tv/divers/3449373-les-enfants-terribles.html', | 
					
						
							| 
									
										
										
										
											2016-12-10 10:47:19 +01:00
										 |  |  |             'md5': 'ff7f8450a90cf58dacb64e29707b4a8e', | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  |             'info_dict': { | 
					
						
							|  |  |  |                 'id': '3449373', | 
					
						
							| 
									
										
										
										
											2014-12-02 20:45:43 +06:00
										 |  |  |                 'display_id': 'les-enfants-terribles', | 
					
						
							| 
									
										
										
										
											2015-12-29 11:36:04 +01:00
										 |  |  |                 'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  |                 'duration': 1488, | 
					
						
							|  |  |  |                 'title': 'Les Enfants Terribles', | 
					
						
							|  |  |  |                 'description': 'France Pommier et sa soeur Luce Feral, les deux filles de ce groupe de 5.', | 
					
						
							|  |  |  |                 'uploader': 'Divers', | 
					
						
							|  |  |  |                 'upload_date': '19680921', | 
					
						
							|  |  |  |                 'timestamp': -40280400, | 
					
						
							| 
									
										
										
										
											2017-01-02 20:08:07 +08:00
										 |  |  |                 'thumbnail': r're:^https?://.*\.image', | 
					
						
							| 
									
										
										
										
											2014-12-02 20:45:43 +06:00
										 |  |  |                 'view_count': int, | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  |             }, | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             'url': 'http://www.rts.ch/emissions/passe-moi-les-jumelles/5624067-entre-ciel-et-mer.html', | 
					
						
							|  |  |  |             'info_dict': { | 
					
						
							| 
									
										
										
										
											2016-12-10 10:47:19 +01:00
										 |  |  |                 'id': '5624065', | 
					
						
							|  |  |  |                 'title': 'Passe-moi les jumelles', | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  |             }, | 
					
						
							| 
									
										
										
										
											2016-12-10 10:47:19 +01:00
										 |  |  |             'playlist_mincount': 4, | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  |         }, | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             'url': 'http://www.rts.ch/video/sport/hockey/5745975-1-2-kloten-fribourg-5-2-second-but-pour-gotteron-par-kwiatowski.html', | 
					
						
							|  |  |  |             'info_dict': { | 
					
						
							|  |  |  |                 'id': '5745975', | 
					
						
							| 
									
										
										
										
											2014-12-02 20:45:43 +06:00
										 |  |  |                 'display_id': '1-2-kloten-fribourg-5-2-second-but-pour-gotteron-par-kwiatowski', | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  |                 'ext': 'mp4', | 
					
						
							|  |  |  |                 'duration': 48, | 
					
						
							|  |  |  |                 'title': '1/2, Kloten - Fribourg (5-2): second but pour Gottéron par Kwiatowski', | 
					
						
							|  |  |  |                 'description': 'Hockey - Playoff', | 
					
						
							|  |  |  |                 'uploader': 'Hockey', | 
					
						
							|  |  |  |                 'upload_date': '20140403', | 
					
						
							|  |  |  |                 'timestamp': 1396556882, | 
					
						
							| 
									
										
										
										
											2017-01-02 20:08:07 +08:00
										 |  |  |                 'thumbnail': r're:^https?://.*\.image', | 
					
						
							| 
									
										
										
										
											2014-12-02 20:45:43 +06:00
										 |  |  |                 'view_count': int, | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  |             }, | 
					
						
							| 
									
										
										
										
											2016-12-10 10:47:19 +01:00
										 |  |  |             'params': { | 
					
						
							|  |  |  |                 # m3u8 download | 
					
						
							|  |  |  |                 'skip_download': True, | 
					
						
							|  |  |  |             }, | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  |             'skip': 'Blocked outside Switzerland', | 
					
						
							| 
									
										
										
										
											2014-03-24 01:41:14 +01:00
										 |  |  |         }, | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  |         { | 
					
						
							|  |  |  |             'url': 'http://www.rts.ch/video/info/journal-continu/5745356-londres-cachee-par-un-epais-smog.html', | 
					
						
							| 
									
										
										
										
											2016-12-10 10:47:19 +01:00
										 |  |  |             'md5': '1bae984fe7b1f78e94abc74e802ed99f', | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  |             'info_dict': { | 
					
						
							|  |  |  |                 'id': '5745356', | 
					
						
							| 
									
										
										
										
											2014-12-02 20:45:43 +06:00
										 |  |  |                 'display_id': 'londres-cachee-par-un-epais-smog', | 
					
						
							| 
									
										
										
										
											2015-12-29 11:36:04 +01:00
										 |  |  |                 'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  |                 'duration': 33, | 
					
						
							|  |  |  |                 'title': 'Londres cachée par un épais smog', | 
					
						
							|  |  |  |                 'description': 'Un important voile de smog recouvre Londres depuis mercredi, provoqué par la pollution et du sable du Sahara.', | 
					
						
							| 
									
										
										
										
											2016-12-10 10:47:19 +01:00
										 |  |  |                 'uploader': 'L\'actu en vidéo', | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  |                 'upload_date': '20140403', | 
					
						
							|  |  |  |                 'timestamp': 1396537322, | 
					
						
							| 
									
										
										
										
											2017-01-02 20:08:07 +08:00
										 |  |  |                 'thumbnail': r're:^https?://.*\.image', | 
					
						
							| 
									
										
										
										
											2014-12-02 20:45:43 +06:00
										 |  |  |                 'view_count': int, | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  |             }, | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             'url': 'http://www.rts.ch/audio/couleur3/programmes/la-belle-video-de-stephane-laurenceau/5706148-urban-hippie-de-damien-krisl-03-04-2014.html', | 
					
						
							|  |  |  |             'md5': 'dd8ef6a22dff163d063e2a52bc8adcae', | 
					
						
							|  |  |  |             'info_dict': { | 
					
						
							|  |  |  |                 'id': '5706148', | 
					
						
							| 
									
										
										
										
											2014-12-02 20:45:43 +06:00
										 |  |  |                 'display_id': 'urban-hippie-de-damien-krisl-03-04-2014', | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  |                 'ext': 'mp3', | 
					
						
							|  |  |  |                 'duration': 123, | 
					
						
							|  |  |  |                 'title': '"Urban Hippie", de Damien Krisl', | 
					
						
							|  |  |  |                 'description': 'Des Hippies super glam.', | 
					
						
							|  |  |  |                 'upload_date': '20140403', | 
					
						
							|  |  |  |                 'timestamp': 1396551600, | 
					
						
							|  |  |  |             }, | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2015-07-23 22:50:59 +06:00
										 |  |  |         { | 
					
						
							|  |  |  |             # article with videos on rhs | 
					
						
							|  |  |  |             'url': 'http://www.rts.ch/sport/hockey/6693917-hockey-davos-decroche-son-31e-titre-de-champion-de-suisse.html', | 
					
						
							|  |  |  |             'info_dict': { | 
					
						
							|  |  |  |                 'id': '6693917', | 
					
						
							|  |  |  |                 'title': 'Hockey: Davos décroche son 31e titre de champion de Suisse', | 
					
						
							|  |  |  |             }, | 
					
						
							|  |  |  |             'playlist_mincount': 5, | 
					
						
							| 
									
										
										
										
											2016-12-10 10:47:19 +01:00
										 |  |  |         }, | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             'url': 'http://pages.rts.ch/emissions/passe-moi-les-jumelles/5624065-entre-ciel-et-mer.html', | 
					
						
							|  |  |  |             'only_matching': True, | 
					
						
							| 
									
										
										
										
											2014-12-02 20:45:43 +06:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  |     ] | 
					
						
							| 
									
										
										
										
											2014-03-24 01:41:14 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         m = re.match(self._VALID_URL, url) | 
					
						
							| 
									
										
										
										
											2015-12-05 15:57:10 +01:00
										 |  |  |         media_id = m.group('rts_id') or m.group('id') | 
					
						
							|  |  |  |         display_id = m.group('display_id') or media_id | 
					
						
							| 
									
										
										
										
											2014-03-24 01:41:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-04 23:13:52 +02:00
										 |  |  |         def download_json(internal_id): | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  |             return self._download_json( | 
					
						
							| 
									
										
										
										
											2014-04-04 23:13:52 +02:00
										 |  |  |                 'http://www.rts.ch/a/%s.html?f=json/article' % internal_id, | 
					
						
							| 
									
										
										
										
											2014-12-02 20:45:43 +06:00
										 |  |  |                 display_id) | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-05 15:57:10 +01:00
										 |  |  |         all_info = download_json(media_id) | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-05 15:57:10 +01:00
										 |  |  |         # media_id extracted out of URL is not always a real id | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  |         if 'video' not in all_info and 'audio' not in all_info: | 
					
						
							| 
									
										
										
										
											2016-12-10 10:47:19 +01:00
										 |  |  |             entries = [] | 
					
						
							| 
									
										
										
										
											2015-07-23 22:50:59 +06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-10 10:47:19 +01:00
										 |  |  |             for item in all_info.get('items', []): | 
					
						
							|  |  |  |                 item_url = item.get('url') | 
					
						
							|  |  |  |                 if not item_url: | 
					
						
							|  |  |  |                     continue | 
					
						
							|  |  |  |                 entries.append(self.url_result(item_url, 'RTS')) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if not entries: | 
					
						
							|  |  |  |                 page, urlh = self._download_webpage_handle(url, display_id) | 
					
						
							|  |  |  |                 if re.match(self._VALID_URL, urlh.geturl()).group('id') != media_id: | 
					
						
							|  |  |  |                     return self.url_result(urlh.geturl(), 'RTS') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 # article with videos on rhs | 
					
						
							| 
									
										
										
										
											2015-12-05 15:57:10 +01:00
										 |  |  |                 videos = re.findall( | 
					
						
							| 
									
										
										
										
											2016-12-10 10:47:19 +01:00
										 |  |  |                     r'<article[^>]+class="content-item"[^>]*>\s*<a[^>]+data-video-urn="urn:([^"]+)"', | 
					
						
							| 
									
										
										
										
											2015-12-05 15:57:10 +01:00
										 |  |  |                     page) | 
					
						
							| 
									
										
										
										
											2016-12-10 10:47:19 +01:00
										 |  |  |                 if not videos: | 
					
						
							|  |  |  |                     videos = re.findall( | 
					
						
							|  |  |  |                         r'(?s)<iframe[^>]+class="srg-player"[^>]+src="[^"]+urn:([^"]+)"', | 
					
						
							|  |  |  |                         page) | 
					
						
							|  |  |  |                 if videos: | 
					
						
							|  |  |  |                     entries = [self.url_result('srgssr:%s' % video_urn, 'SRGSSR') for video_urn in videos] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if entries: | 
					
						
							|  |  |  |                 return self.playlist_result(entries, media_id, all_info.get('title')) | 
					
						
							| 
									
										
										
										
											2015-07-23 22:50:59 +06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-04 23:13:52 +02:00
										 |  |  |             internal_id = self._html_search_regex( | 
					
						
							|  |  |  |                 r'<(?:video|audio) data-id="([0-9]+)"', page, | 
					
						
							|  |  |  |                 'internal video id') | 
					
						
							|  |  |  |             all_info = download_json(internal_id) | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-05 15:57:10 +01:00
										 |  |  |         media_type = 'video' if 'video' in all_info else 'audio' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # check for errors | 
					
						
							|  |  |  |         self.get_media_data('rts', media_type, media_id) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  |         info = all_info['video']['JSONinfo'] if 'video' in all_info else all_info['audio'] | 
					
						
							| 
									
										
										
										
											2014-03-24 01:41:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-10 10:47:19 +01:00
										 |  |  |         title = info['title'] | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         def extract_bitrate(url): | 
					
						
							|  |  |  |             return int_or_none(self._search_regex( | 
					
						
							|  |  |  |                 r'-([0-9]+)k\.', url, 'bitrate', default=None)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-05 22:17:50 +06:00
										 |  |  |         formats = [] | 
					
						
							| 
									
										
										
										
											2016-12-10 10:47:19 +01:00
										 |  |  |         streams = info.get('streams', {}) | 
					
						
							|  |  |  |         for format_id, format_url in streams.items(): | 
					
						
							|  |  |  |             if format_id == 'hds_sd' and 'hds' in streams: | 
					
						
							| 
									
										
										
										
											2015-12-05 15:57:10 +01:00
										 |  |  |                 continue | 
					
						
							| 
									
										
										
										
											2016-12-10 10:47:19 +01:00
										 |  |  |             if format_id == 'hls_sd' and 'hls' in streams: | 
					
						
							| 
									
										
										
										
											2015-12-05 15:57:10 +01:00
										 |  |  |                 continue | 
					
						
							| 
									
										
										
										
											2016-12-10 10:47:19 +01:00
										 |  |  |             ext = determine_ext(format_url) | 
					
						
							|  |  |  |             if ext in ('m3u8', 'f4m'): | 
					
						
							|  |  |  |                 format_url = self._get_tokenized_src(format_url, media_id, format_id) | 
					
						
							|  |  |  |                 if ext == 'f4m': | 
					
						
							|  |  |  |                     formats.extend(self._extract_f4m_formats( | 
					
						
							|  |  |  |                         format_url + ('?' if '?' not in format_url else '&') + 'hdcore=3.4.0', | 
					
						
							|  |  |  |                         media_id, f4m_id=format_id, fatal=False)) | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     formats.extend(self._extract_m3u8_formats( | 
					
						
							|  |  |  |                         format_url, media_id, 'mp4', 'm3u8_native', m3u8_id=format_id, fatal=False)) | 
					
						
							| 
									
										
										
										
											2015-02-05 22:17:50 +06:00
										 |  |  |             else: | 
					
						
							|  |  |  |                 formats.append({ | 
					
						
							|  |  |  |                     'format_id': format_id, | 
					
						
							|  |  |  |                     'url': format_url, | 
					
						
							|  |  |  |                     'tbr': extract_bitrate(format_url), | 
					
						
							|  |  |  |                 }) | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-10 10:47:19 +01:00
										 |  |  |         for media in info.get('media', []): | 
					
						
							|  |  |  |             media_url = media.get('url') | 
					
						
							|  |  |  |             if not media_url or re.match(r'https?://', media_url): | 
					
						
							|  |  |  |                 continue | 
					
						
							|  |  |  |             rate = media.get('rate') | 
					
						
							|  |  |  |             ext = media.get('ext') or determine_ext(media_url, 'mp4') | 
					
						
							|  |  |  |             format_id = ext | 
					
						
							|  |  |  |             if rate: | 
					
						
							|  |  |  |                 format_id += '-%dk' % rate | 
					
						
							|  |  |  |             formats.append({ | 
					
						
							|  |  |  |                 'format_id': format_id, | 
					
						
							|  |  |  |                 'url': 'http://download-video.rts.ch/' + media_url, | 
					
						
							|  |  |  |                 'tbr': rate or extract_bitrate(media_url), | 
					
						
							|  |  |  |             }) | 
					
						
							| 
									
										
										
										
											2014-04-04 20:41:41 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-05 15:57:10 +01:00
										 |  |  |         self._check_formats(formats, media_id) | 
					
						
							| 
									
										
										
										
											2014-03-24 01:41:14 +01:00
										 |  |  |         self._sort_formats(formats) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-10 10:47:19 +01:00
										 |  |  |         duration = info.get('duration') or info.get('cutout') or info.get('cutduration') | 
					
						
							|  |  |  |         if isinstance(duration, compat_str): | 
					
						
							|  |  |  |             duration = parse_duration(duration) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-24 01:41:14 +01:00
										 |  |  |         return { | 
					
						
							| 
									
										
										
										
											2015-12-05 15:57:10 +01:00
										 |  |  |             'id': media_id, | 
					
						
							| 
									
										
										
										
											2014-12-02 20:45:43 +06:00
										 |  |  |             'display_id': display_id, | 
					
						
							| 
									
										
										
										
											2014-03-24 01:41:14 +01:00
										 |  |  |             'formats': formats, | 
					
						
							| 
									
										
										
										
											2016-12-10 10:47:19 +01:00
										 |  |  |             'title': title, | 
					
						
							| 
									
										
										
										
											2014-03-24 01:41:14 +01:00
										 |  |  |             'description': info.get('intro'), | 
					
						
							|  |  |  |             'duration': duration, | 
					
						
							| 
									
										
										
										
											2016-12-10 10:47:19 +01:00
										 |  |  |             'view_count': int_or_none(info.get('plays')), | 
					
						
							| 
									
										
										
										
											2014-03-24 01:41:14 +01:00
										 |  |  |             'uploader': info.get('programName'), | 
					
						
							| 
									
										
										
										
											2016-12-10 10:47:19 +01:00
										 |  |  |             'timestamp': parse_iso8601(info.get('broadcast_date')), | 
					
						
							|  |  |  |             'thumbnail': unescapeHTML(info.get('preview_image_url')), | 
					
						
							| 
									
										
										
										
											2014-03-24 01:41:14 +01:00
										 |  |  |         } |