]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/vgtv.py
[generic] Extract subtitles from video.js (#3156)
[yt-dlp.git] / yt_dlp / extractor / vgtv.py
CommitLineData
78149a96
MK
1# coding: utf-8
2from __future__ import unicode_literals
3
4import re
5
6from .common import InfoExtractor
d50116b8 7from .xstream import XstreamIE
4d454c5e
S
8from ..utils import (
9 ExtractorError,
10 float_or_none,
320d597c 11 try_get,
4d454c5e 12)
78149a96 13
78149a96 14
d50116b8 15class VGTVIE(XstreamIE):
804afc58 16 IE_DESC = 'VGTV, BTTV, FTV, Aftenposten and Aftonbladet'
4248dad9 17 _GEO_BYPASS = False
41c3b34b 18
19 _HOST_TO_APPNAME = {
20 'vgtv.no': 'vgtv',
21 'bt.no/tv': 'bttv',
22 'aftenbladet.no/tv': 'satv',
23 'fvn.no/fvntv': 'fvntv',
24 'aftenposten.no/webtv': 'aptv',
7177fd24 25 'ap.vgtv.no/webtv': 'aptv',
1418a043 26 'tv.aftonbladet.se': 'abtv',
27 # obsolete URL schemas, kept in order to save one HTTP redirect
b0582fc8 28 'tv.aftonbladet.se/abtv': 'abtv',
721a877d 29 'www.aftonbladet.se/tv': 'abtv',
41c3b34b 30 }
31
32 _APP_NAME_TO_VENDOR = {
33 'vgtv': 'vgtv',
34 'bttv': 'bt',
35 'satv': 'sa',
36 'fvntv': 'fvn',
37 'aptv': 'ap',
b0582fc8 38 'abtv': 'ab',
41c3b34b 39 }
40
0ceab847 41 _VALID_URL = r'''(?x)
41c3b34b 42 (?:https?://(?:www\.)?
804afc58 43 (?P<host>
41c3b34b 44 %s
0ceab847 45 )
7177fd24 46 /?
0ceab847 47 (?:
cbf85239 48 (?:\#!/)?(?:video|live)/|
b0582fc8 49 embed?.*id=|
721a877d 50 a(?:rticles)?/
41c3b34b 51 )|
52 (?P<appname>
53 %s
54 ):)
9f6b5176 55 (?P<id>\d+)
41c3b34b 56 ''' % ('|'.join(_HOST_TO_APPNAME.keys()), '|'.join(_APP_NAME_TO_VENDOR.keys()))
57
321c1e44
S
58 _TESTS = [
59 {
60 # streamType: vod
61 'url': 'http://www.vgtv.no/#!/video/84196/hevnen-er-soet-episode-10-abu',
62 'md5': 'b8be7a234cebb840c0d512c78013e02f',
63 'info_dict': {
64 'id': '84196',
65 'ext': 'mp4',
eecd6a46 66 'title': 'Hevnen er søt: Episode 10 - Abu',
321c1e44 67 'description': 'md5:e25e4badb5f544b04341e14abdc72234',
ec85ded8 68 'thumbnail': r're:^https?://.*\.jpg',
321c1e44
S
69 'duration': 648.000,
70 'timestamp': 1404626400,
3fbeb95e
S
71 'upload_date': '20140706',
72 'view_count': int,
321c1e44
S
73 },
74 },
75 {
76 # streamType: wasLive
77 'url': 'http://www.vgtv.no/#!/live/100764/opptak-vgtv-foelger-em-kvalifiseringen',
78 'info_dict': {
79 'id': '100764',
b7bb0df2 80 'ext': 'flv',
321c1e44
S
81 'title': 'OPPTAK: VGTV følger EM-kvalifiseringen',
82 'description': 'md5:3772d9c0dc2dff92a886b60039a7d4d3',
ec85ded8 83 'thumbnail': r're:^https?://.*\.jpg',
eecd6a46 84 'duration': 9103.0,
321c1e44 85 'timestamp': 1410113864,
3fbeb95e
S
86 'upload_date': '20140907',
87 'view_count': int,
321c1e44
S
88 },
89 'params': {
90 # m3u8 download
91 'skip_download': True,
92 },
00d24327 93 'skip': 'Video is no longer available',
321c1e44
S
94 },
95 {
00d24327 96 # streamType: wasLive
b4dd9835 97 'url': 'http://www.vgtv.no/#!/live/113063/direkte-v75-fra-solvalla',
321c1e44 98 'info_dict': {
b4dd9835 99 'id': '113063',
7c38af48 100 'ext': 'mp4',
00d24327 101 'title': 'V75 fra Solvalla 30.05.15',
b4dd9835 102 'description': 'md5:b3743425765355855f88e096acc93231',
ec85ded8 103 'thumbnail': r're:^https?://.*\.jpg',
00d24327 104 'duration': 25966,
b4dd9835
S
105 'timestamp': 1432975582,
106 'upload_date': '20150530',
3fbeb95e 107 'view_count': int,
321c1e44 108 },
7c38af48
YCH
109 'params': {
110 # m3u8 download
111 'skip_download': True,
112 },
9f6b5176 113 },
114 {
00d24327 115 'url': 'http://www.aftenposten.no/webtv/#!/video/21039/trailer-sweatshop-i-can-t-take-any-more',
3b68efdc 116 'md5': 'fd828cd29774a729bf4d4425fe192972',
00d24327 117 'info_dict': {
118 'id': '21039',
7177fd24 119 'ext': 'mp4',
00d24327 120 'title': 'TRAILER: «SWEATSHOP» - I can´t take any more',
121 'description': 'md5:21891f2b0dd7ec2f78d84a50e54f8238',
122 'duration': 66,
123 'timestamp': 1417002452,
124 'upload_date': '20141126',
125 'view_count': int,
7177fd24 126 },
127 'params': {
128 # m3u8 download
129 'skip_download': True,
130 },
321c1e44 131 },
34e7dc81
S
132 {
133 'url': 'http://www.bt.no/tv/#!/video/100250/norling-dette-er-forskjellen-paa-1-divisjon-og-eliteserien',
134 'only_matching': True,
135 },
7177fd24 136 {
137 'url': 'http://ap.vgtv.no/webtv#!/video/111084/de-nye-bysyklene-lettere-bedre-gir-stoerre-hjul-og-feste-til-mobil',
138 'only_matching': True,
139 },
320d597c
S
140 {
141 # geoblocked
142 'url': 'http://www.vgtv.no/#!/video/127205/inside-the-mind-of-favela-funk',
143 'only_matching': True,
144 },
1418a043 145 {
146 'url': 'https://tv.aftonbladet.se/video/36015/vulkanutbrott-i-rymden-nu-slapper-nasa-bilderna',
147 'only_matching': True,
148 },
b0582fc8
S
149 {
150 'url': 'http://tv.aftonbladet.se/abtv/articles/36015',
151 'only_matching': True,
152 },
721a877d
S
153 {
154 'url': 'https://www.aftonbladet.se/tv/a/36015',
155 'only_matching': True,
156 },
b0582fc8
S
157 {
158 'url': 'abtv:140026',
159 'only_matching': True,
cbf85239
S
160 },
161 {
162 'url': 'http://www.vgtv.no/video/84196/hevnen-er-soet-episode-10-abu',
163 'only_matching': True,
164 },
321c1e44 165 ]
78149a96 166
321c1e44 167 def _real_extract(self, url):
5ad28e7f 168 mobj = self._match_valid_url(url)
34e7dc81
S
169 video_id = mobj.group('id')
170 host = mobj.group('host')
41c3b34b 171 appname = self._HOST_TO_APPNAME[host] if host else mobj.group('appname')
172 vendor = self._APP_NAME_TO_VENDOR[appname]
34e7dc81 173
321c1e44 174 data = self._download_json(
34e7dc81 175 'http://svp.vg.no/svp/api/v1/%s/assets/%s?appName=%s-website'
41c3b34b 176 % (vendor, video_id, appname),
321c1e44 177 video_id, 'Downloading media JSON')
78149a96 178
4d454c5e
S
179 if data.get('status') == 'inactive':
180 raise ExtractorError(
181 'Video %s is no longer available' % video_id, expected=True)
182
d50116b8 183 info = {
184 'formats': [],
185 }
186 if len(video_id) == 5:
187 if appname == 'bttv':
188 info = self._extract_video_info('btno', video_id)
d50116b8 189
321c1e44 190 streams = data['streamUrls']
b4dd9835 191 stream_type = data.get('streamType')
713afa70 192 is_live = stream_type == 'live'
321c1e44 193 formats = []
78149a96 194
321c1e44
S
195 hls_url = streams.get('hls')
196 if hls_url:
7e5edcfd 197 formats.extend(self._extract_m3u8_formats(
a5c0c202 198 hls_url, video_id, 'mp4', live=is_live, m3u8_id='hls', fatal=False))
78149a96 199
321c1e44 200 hds_url = streams.get('hds')
97f18fac 201 if hds_url:
202 hdcore_sign = 'hdcore=3.7.0'
41c3b34b 203 f4m_formats = self._extract_f4m_formats(
97f18fac 204 hds_url + '?%s' % hdcore_sign, video_id, f4m_id='hds', fatal=False)
9f6b5176 205 if f4m_formats:
97f18fac 206 for entry in f4m_formats:
207 # URLs without the extra param induce an 404 error
208 entry.update({'extra_param_to_segment_url': hdcore_sign})
209 formats.append(entry)
78149a96 210
9f6b5176 211 mp4_urls = streams.get('pseudostreaming') or []
321c1e44
S
212 mp4_url = streams.get('mp4')
213 if mp4_url:
9f6b5176 214 mp4_urls.append(mp4_url)
215 for mp4_url in mp4_urls:
216 format_info = {
217 'url': mp4_url,
9f6b5176 218 }
ec85ded8 219 mobj = re.search(r'(\d+)_(\d+)_(\d+)', mp4_url)
9f6b5176 220 if mobj:
3b68efdc 221 tbr = int(mobj.group(3))
9f6b5176 222 format_info.update({
223 'width': int(mobj.group(1)),
224 'height': int(mobj.group(2)),
3b68efdc 225 'tbr': tbr,
226 'format_id': 'mp4-%s' % tbr,
321c1e44 227 })
9f6b5176 228 formats.append(format_info)
229
d50116b8 230 info['formats'].extend(formats)
321c1e44 231
320d597c
S
232 if not info['formats']:
233 properties = try_get(
234 data, lambda x: x['streamConfiguration']['properties'], list)
235 if properties and 'geoblocked' in properties:
4248dad9
S
236 raise self.raise_geo_restricted(
237 countries=[host.rpartition('.')[-1].partition('/')[0].upper()])
320d597c 238
d50116b8 239 self._sort_formats(info['formats'])
240
241 info.update({
321c1e44 242 'id': video_id,
39ca3b5c 243 'title': data['title'],
321c1e44
S
244 'description': data['description'],
245 'thumbnail': data['images']['main'] + '?t[]=900x506q80',
246 'timestamp': data['published'],
247 'duration': float_or_none(data['duration'], 1000),
248 'view_count': data['displays'],
713afa70 249 'is_live': is_live,
d50116b8 250 })
251 return info
0ceab847
S
252
253
254class BTArticleIE(InfoExtractor):
fe373287
S
255 IE_NAME = 'bt:article'
256 IE_DESC = 'Bergens Tidende Articles'
5886b38d 257 _VALID_URL = r'https?://(?:www\.)?bt\.no/(?:[^/]+/)+(?P<id>[^/]+)-\d+\.html'
0ceab847
S
258 _TEST = {
259 'url': 'http://www.bt.no/nyheter/lokalt/Kjemper-for-internatet-1788214.html',
3b68efdc 260 'md5': '2acbe8ad129b3469d5ae51b1158878df',
0ceab847
S
261 'info_dict': {
262 'id': '23199',
263 'ext': 'mp4',
264 'title': 'Alrekstad internat',
265 'description': 'md5:dc81a9056c874fedb62fc48a300dac58',
ec85ded8 266 'thumbnail': r're:^https?://.*\.jpg',
0ceab847
S
267 'duration': 191,
268 'timestamp': 1289991323,
269 'upload_date': '20101117',
270 'view_count': int,
271 },
272 }
273
274 def _real_extract(self, url):
275 webpage = self._download_webpage(url, self._match_id(url))
276 video_id = self._search_regex(
3b68efdc 277 r'<video[^>]+data-id="(\d+)"', webpage, 'video id')
41c3b34b 278 return self.url_result('bttv:%s' % video_id, 'VGTV')
fe373287
S
279
280
281class BTVestlendingenIE(InfoExtractor):
282 IE_NAME = 'bt:vestlendingen'
283 IE_DESC = 'Bergens Tidende - Vestlendingen'
5886b38d 284 _VALID_URL = r'https?://(?:www\.)?bt\.no/spesial/vestlendingen/#!/(?P<id>\d+)'
3b68efdc 285 _TESTS = [{
fe373287
S
286 'url': 'http://www.bt.no/spesial/vestlendingen/#!/86588',
287 'md5': 'd7d17e3337dc80de6d3a540aefbe441b',
288 'info_dict': {
289 'id': '86588',
290 'ext': 'mov',
291 'title': 'Otto Wollertsen',
292 'description': 'Vestlendingen Otto Fredrik Wollertsen',
293 'timestamp': 1430473209,
294 'upload_date': '20150501',
295 },
3b68efdc 296 'skip': '404 Error',
297 }, {
298 'url': 'http://www.bt.no/spesial/vestlendingen/#!/86255',
299 'md5': 'a2893f8632e96389f4bdf36aa9463ceb',
300 'info_dict': {
301 'id': '86255',
302 'ext': 'mov',
303 'title': 'Du må tåle å fryse og være sulten',
304 'description': 'md5:b8046f4d022d5830ddab04865791d063',
305 'upload_date': '20150321',
306 'timestamp': 1426942023,
307 },
308 }]
fe373287
S
309
310 def _real_extract(self, url):
41c3b34b 311 return self.url_result('bttv:%s' % self._match_id(url), 'VGTV')