[srgssr] change the url chortcut, fix image extraction ,add a test and extract format id
[youtube-dl] / youtube_dl / extractor / srgssr.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 import re
5
6 from .common import InfoExtractor
7 from ..utils import (
8     ExtractorError,
9     parse_iso8601,
10     qualities,
11 )
12
13
14 class SRGSSRIE(InfoExtractor):
15     _VALID_URL = r'(?:https?://tp\.srgssr\.ch/p(?:/[^/]+)+\?urn=urn|srgssr):(?P<bu>srf|rts|rsi|rtr|swi):(?:[^:]+:)?(?P<type>video|audio):(?P<id>[0-9a-f\-]{36}|\d+)'
16
17     _ERRORS = {
18         'AGERATING12': 'To protect children under the age of 12, this video is only available between 8 p.m. and 6 a.m.',
19         'AGERATING18': 'To protect children under the age of 18, this video is only available between 11 p.m. and 5 a.m.',
20 #        'ENDDATE': 'For legal reasons, this video was only available for a specified period of time.',
21         'GEOBLOCK': 'For legal reasons, this video is only available in Switzerland.',
22         'LEGAL': 'The video cannot be transmitted for legal reasons.',
23         'STARTDATE': 'This video is not yet available. Please try again later.',
24     }
25
26     def _real_extract(self, url):
27         bu, media_type, media_id = re.match(self._VALID_URL, url).groups()
28
29         media_data = self._download_json(
30             'http://il.srgssr.ch/integrationlayer/1.0/ue/%s/%s/play/%s.json' % (bu, media_type, media_id),
31             media_id)[media_type.capitalize()]
32
33         if media_data.get('block') and media_data['block'] in self._ERRORS:
34             raise ExtractorError(
35                     '%s said: %s' % (
36                         self.IE_NAME,
37                         self._ERRORS[media_data['block']]),
38                     expected=True)
39
40         metadata = media_data['AssetMetadatas']['AssetMetadata'][0]
41         title = metadata['title']
42         description = metadata.get('description')
43         created_date = media_data.get('createdDate') or metadata.get('createdDate')
44         timestamp = parse_iso8601(created_date)
45
46         thumbnails = []
47         if 'Image' in media_data:
48             for image in media_data['Image']['ImageRepresentations']['ImageRepresentation']:
49                 thumbnails.append({
50                     'id': image.get('id'),
51                     'url': image['url'],
52                 })
53
54         preference = qualities(['LQ', 'MQ', 'SD', 'HQ', 'HD'])
55         formats = []
56         for source in media_data['Playlists']['Playlist']:
57             assets = {}
58             protocol = source.get('@protocol')
59             if protocol in ('HTTP-HDS', 'HTTP-HLS'):
60                 for quality in source['url']:
61                     assets[quality['@quality']] = quality['text']
62                 asset_url = assets.get('HD') or assets.get('HQ') or assets.get('SD') or assets.get('MQ') or assets.get('LQ')
63                 if '.f4m' in asset_url:
64                     formats.extend(self._extract_f4m_formats(asset_url + '?hdcore=3.4.0', media_id, f4m_id='hds'))
65                 elif '.m3u8' in asset_url:
66                     formats.extend(self._extract_m3u8_formats(asset_url, media_id, m3u8_id='hls'))
67             else:
68                 for asset in source['url']:
69                     asset_url = asset['text']
70                     ext = None
71                     if asset_url.startswith('rtmp'):
72                         ext = self._search_regex(r'([a-z0-9]+):[^/]+', asset_url, 'ext')
73                     formats.append({
74                         'format_id': asset['@quality'],
75                         'url': asset_url,
76                         'preference': preference(asset['@quality']),
77                         'ext': ext,
78                     })
79
80         if 'Downloads' in media_data:
81             for source in media_data['Downloads']['Download']:
82                 for asset in source['url']:
83                     formats.append({
84                         'format_id': asset['@quality'],
85                         'url': asset['text'],
86                         'preference': preference(asset['@quality'])
87                     })
88         self._sort_formats(formats)
89
90         return {
91             'id': media_id,
92             'title': title,
93             'description': description,
94             'timestamp': timestamp,
95             'thumbnails': thumbnails,
96             'formats': formats,
97         }
98
99
100 class SRGSSRPlayIE(InfoExtractor):
101     _VALID_URL = r'https?://(?:(?:www|play)\.)?(?P<bu>srf|rts|rsi|rtr|swissinfo)\.ch/play/(?:tv|radio)/[^/]+/(?P<type>video|audio)/[^?]+\?id=(?P<id>[0-9a-f\-]{36}|\d+)'
102
103     _TESTS = [{
104         'url': 'http://www.srf.ch/play/tv/10vor10/video/snowden-beantragt-asyl-in-russland?id=28e1a57d-5b76-4399-8ab3-9097f071e6c5',
105         'md5': '4cd93523723beff51bb4bee974ee238d',
106         'info_dict': {
107             'id': '28e1a57d-5b76-4399-8ab3-9097f071e6c5',
108             'ext': 'm4v',
109             'upload_date': '20130701',
110             'title': 'Snowden beantragt Asyl in Russland',
111             'timestamp': 1372713995,
112         }
113     }, {
114         # No Speichern (Save) button
115         'url': 'http://www.srf.ch/play/tv/top-gear/video/jaguar-xk120-shadow-und-tornado-dampflokomotive?id=677f5829-e473-4823-ac83-a1087fe97faa',
116         'md5': '0a274ce38fda48c53c01890651985bc6',
117         'info_dict': {
118             'id': '677f5829-e473-4823-ac83-a1087fe97faa',
119             'ext': 'flv',
120             'upload_date': '20130710',
121             'title': 'Jaguar XK120, Shadow und Tornado-Dampflokomotive',
122             'description': 'md5:88604432b60d5a38787f152dec89cd56',
123             'timestamp': 1373493600,
124         },
125     },{
126         'url': 'http://www.rtr.ch/play/radio/actualitad/audio/saira-tujetsch-tuttina-cuntinuar-cun-sedrun-muster-turissem?id=63cb0778-27f8-49af-9284-8c7a8c6d15fc',
127         'info_dict': {
128             'id': '63cb0778-27f8-49af-9284-8c7a8c6d15fc',
129             'ext': 'mp3',
130             'upload_date': '20151013',
131             'title': 'Saira: Tujetsch - tuttina cuntinuar cun Sedrun Mustér Turissem',
132             'timestamp': 1444750398,
133         },
134         'params': {
135             # rtmp download
136             'skip_download': True,
137         },
138     }]
139
140     def _real_extract(self, url):
141         bu, media_type, media_id = re.match(self._VALID_URL, url).groups()
142         return self.url_result('srgssr:%s:%s:%s' % (bu[:3], media_type, media_id), 'SRGSSR')