[vgtv] extract all formats and improve extraction
[youtube-dl] / youtube_dl / extractor / vgtv.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     float_or_none,
10 )
11
12
13 class VGTVIE(InfoExtractor):
14     IE_DESC = 'VGTV, BTTV, FTV, Aftenposten and Aftonbladet'
15     _VALID_URL = r'''(?x)
16                     https?://(?:www\.)?
17                     (?P<host>
18                         vgtv.no|
19                         (?:bt|aftenbladet).no/tv|
20                         fvn.no/fvntv|
21                         aftenposten.no/webtv
22                     )
23                     /
24                     (?:
25                         \#!/(?:video|live)/|
26                         embed?.*id=
27                     )
28                     (?P<id>\d+)
29                     '''
30     _TESTS = [
31         {
32             # streamType: vod
33             'url': 'http://www.vgtv.no/#!/video/84196/hevnen-er-soet-episode-10-abu',
34             'md5': 'b8be7a234cebb840c0d512c78013e02f',
35             'info_dict': {
36                 'id': '84196',
37                 'ext': 'mp4',
38                 'title': 'Hevnen er søt: Episode 10 - Abu',
39                 'description': 'md5:e25e4badb5f544b04341e14abdc72234',
40                 'thumbnail': 're:^https?://.*\.jpg',
41                 'duration': 648.000,
42                 'timestamp': 1404626400,
43                 'upload_date': '20140706',
44                 'view_count': int,
45             },
46         },
47         {
48             # streamType: wasLive
49             'url': 'http://www.vgtv.no/#!/live/100764/opptak-vgtv-foelger-em-kvalifiseringen',
50             'info_dict': {
51                 'id': '100764',
52                 'ext': 'flv',
53                 'title': 'OPPTAK: VGTV følger EM-kvalifiseringen',
54                 'description': 'md5:3772d9c0dc2dff92a886b60039a7d4d3',
55                 'thumbnail': 're:^https?://.*\.jpg',
56                 'duration': 9103.0,
57                 'timestamp': 1410113864,
58                 'upload_date': '20140907',
59                 'view_count': int,
60             },
61             'params': {
62                 # m3u8 download
63                 'skip_download': True,
64             },
65             'skip': 'Video is no longer available',
66         },
67         {
68             # streamType: wasLive
69             'url': 'http://www.vgtv.no/#!/live/113063/direkte-v75-fra-solvalla',
70             'info_dict': {
71                 'id': '113063',
72                 'ext': 'mp4',
73                 'title': 'V75 fra Solvalla 30.05.15',
74                 'description': 'md5:b3743425765355855f88e096acc93231',
75                 'thumbnail': 're:^https?://.*\.jpg',
76                 'duration': 25966,
77                 'timestamp': 1432975582,
78                 'upload_date': '20150530',
79                 'view_count': int,
80             },
81             'params': {
82                 # m3u8 download
83                 'skip_download': True,
84             },
85         },
86         {
87             'url': 'http://www.aftenposten.no/webtv/#!/video/21039/trailer-sweatshop-i-can-t-take-any-more',
88             'md5': '7fbc265a3ca4933a423c7a66aa879a67',
89             'info_dict': {
90                 'id': '21039',
91                 'ext': 'mp4',
92                 'title': 'TRAILER: «SWEATSHOP» - I can´t take any more',
93                 'description': 'md5:21891f2b0dd7ec2f78d84a50e54f8238',
94                 'duration': 66,
95                 'timestamp': 1417002452,
96                 'upload_date': '20141126',
97                 'view_count': int,
98             }
99         },
100         {
101             'url': 'http://www.bt.no/tv/#!/video/100250/norling-dette-er-forskjellen-paa-1-divisjon-og-eliteserien',
102             'only_matching': True,
103         },
104     ]
105     _HOST_WEBSITES = {
106         'vgtv.no': {
107             'vendor': 'vgtv',
108             'appname': 'vgtv',
109         },
110         'bt.no/tv': {
111             'vendor': 'bt',
112             'appname': 'bttv',
113         },
114         'aftenbladet.no/tv': {
115             'vendor': 'sa',
116             'appname': 'satv',
117         },
118         'fvn.no/fvntv': {
119             'vendor': 'fvn',
120             'appname': 'fvntv',
121         },
122         'aftenposten.no/webtv': {
123             'vendor': 'ap',
124             'appname': 'aptv',
125         },
126     }
127
128     def _real_extract(self, url):
129         mobj = re.match(self._VALID_URL, url)
130         video_id = mobj.group('id')
131         host = mobj.group('host')
132
133         data = self._download_json(
134             'http://svp.vg.no/svp/api/v1/%s/assets/%s?appName=%s-website'
135             % (self._HOST_WEBSITES[host]['vendor'], video_id, self._HOST_WEBSITES[host]['appname']),
136             video_id, 'Downloading media JSON')
137
138         if data.get('status') == 'inactive':
139             raise ExtractorError(
140                 'Video %s is no longer available' % video_id, expected=True)
141
142         streams = data['streamUrls']
143         stream_type = data.get('streamType')
144
145         formats = []
146
147         hls_url = streams.get('hls')
148         if hls_url:
149             m3u8_formats = self._extract_m3u8_formats(hls_url, video_id, 'mp4', m3u8_id='hls', fatal=False)
150             if m3u8_formats:
151                 formats.extend(m3u8_formats)
152
153         hds_url = streams.get('hds')
154         # wasLive hds are always 404
155         if hds_url and stream_type != 'wasLive':
156             f4m_formats = self._extract_f4m_formats(hds_url + '?hdcore=3.2.0&plugin=aasp-3.2.0.77.18', video_id, f4m_id='hds', fatal=False)
157             if f4m_formats:
158                 formats.extend(f4m_formats)
159
160         mp4_urls = streams.get('pseudostreaming') or []
161         mp4_url = streams.get('mp4')
162         if mp4_url:
163             mp4_urls.append(mp4_url)
164         for mp4_url in mp4_urls:
165             format_info = {
166                 'url': mp4_url,
167                 'preference': 1,
168             }
169             mobj = re.search('(\d+)_(\d+)_(\d+)', mp4_url)
170             if mobj:
171                 vbr = int(mobj.group(3))
172                 format_info.update({
173                     'width': int(mobj.group(1)),
174                     'height': int(mobj.group(2)),
175                     'vbr': vbr,
176                     'format_id': 'mp4-%s' % vbr,
177                 })
178             formats.append(format_info)
179
180         self._sort_formats(formats)
181
182         return {
183             'id': video_id,
184             'title': self._live_title(data['title']) if stream_type == 'live' else data['title'],
185             'description': data['description'],
186             'thumbnail': data['images']['main'] + '?t[]=900x506q80',
187             'timestamp': data['published'],
188             'duration': float_or_none(data['duration'], 1000),
189             'view_count': data['displays'],
190             'formats': formats,
191             'is_live': True if stream_type == 'live' else False,
192         }
193
194
195 class BTArticleIE(InfoExtractor):
196     IE_NAME = 'bt:article'
197     IE_DESC = 'Bergens Tidende Articles'
198     _VALID_URL = 'http://(?:www\.)?bt\.no/(?:[^/]+/)+(?P<id>[^/]+)-\d+\.html'
199     _TEST = {
200         'url': 'http://www.bt.no/nyheter/lokalt/Kjemper-for-internatet-1788214.html',
201         'md5': 'd055e8ee918ef2844745fcfd1a4175fb',
202         'info_dict': {
203             'id': '23199',
204             'ext': 'mp4',
205             'title': 'Alrekstad internat',
206             'description': 'md5:dc81a9056c874fedb62fc48a300dac58',
207             'thumbnail': 're:^https?://.*\.jpg',
208             'duration': 191,
209             'timestamp': 1289991323,
210             'upload_date': '20101117',
211             'view_count': int,
212         },
213     }
214
215     def _real_extract(self, url):
216         webpage = self._download_webpage(url, self._match_id(url))
217         video_id = self._search_regex(
218             r'SVP\.Player\.load\(\s*(\d+)', webpage, 'video id')
219         return self.url_result('http://bt.no/tv/embed?id=%s' % video_id, 'VGTV')
220
221
222 class BTVestlendingenIE(InfoExtractor):
223     IE_NAME = 'bt:vestlendingen'
224     IE_DESC = 'Bergens Tidende - Vestlendingen'
225     _VALID_URL = 'http://(?:www\.)?bt\.no/spesial/vestlendingen/#!/(?P<id>\d+)'
226     _TEST = {
227         'url': 'http://www.bt.no/spesial/vestlendingen/#!/86588',
228         'md5': 'd7d17e3337dc80de6d3a540aefbe441b',
229         'info_dict': {
230             'id': '86588',
231             'ext': 'mov',
232             'title': 'Otto Wollertsen',
233             'description': 'Vestlendingen Otto Fredrik Wollertsen',
234             'timestamp': 1430473209,
235             'upload_date': '20150501',
236         },
237     }
238
239     def _real_extract(self, url):
240         return self.url_result('http://bt.no/tv/embed?id=%s' % self._match_id(url), 'VGTV')