]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/vgtv.py
2 from __future__
import unicode_literals
6 from .common
import InfoExtractor
7 from .xstream
import XstreamIE
15 class VGTVIE(XstreamIE
):
16 IE_DESC
= 'VGTV, BTTV, FTV, Aftenposten and Aftonbladet'
22 'aftenbladet.no/tv': 'satv',
23 'fvn.no/fvntv': 'fvntv',
24 'aftenposten.no/webtv': 'aptv',
25 'ap.vgtv.no/webtv': 'aptv',
26 'tv.aftonbladet.se/abtv': 'abtv',
29 _APP_NAME_TO_VENDOR
= {
39 (?:https?://(?:www\.)?
45 (?:\#!/)?(?:video|live)/|
53 ''' % ('|'.join(_HOST_TO_APPNAME
.keys()), '|'.join(_APP_NAME_TO_VENDOR
.keys()))
58 'url': 'http://www.vgtv.no/#!/video/84196/hevnen-er-soet-episode-10-abu',
59 'md5': 'b8be7a234cebb840c0d512c78013e02f',
63 'title': 'Hevnen er søt: Episode 10 - Abu',
64 'description': 'md5:e25e4badb5f544b04341e14abdc72234',
65 'thumbnail': r
're:^https?://.*\.jpg',
67 'timestamp': 1404626400,
68 'upload_date': '20140706',
74 'url': 'http://www.vgtv.no/#!/live/100764/opptak-vgtv-foelger-em-kvalifiseringen',
78 'title': 'OPPTAK: VGTV følger EM-kvalifiseringen',
79 'description': 'md5:3772d9c0dc2dff92a886b60039a7d4d3',
80 'thumbnail': r
're:^https?://.*\.jpg',
82 'timestamp': 1410113864,
83 'upload_date': '20140907',
88 'skip_download': True,
90 'skip': 'Video is no longer available',
94 'url': 'http://www.vgtv.no/#!/live/113063/direkte-v75-fra-solvalla',
98 'title': 'V75 fra Solvalla 30.05.15',
99 'description': 'md5:b3743425765355855f88e096acc93231',
100 'thumbnail': r
're:^https?://.*\.jpg',
102 'timestamp': 1432975582,
103 'upload_date': '20150530',
108 'skip_download': True,
112 'url': 'http://www.aftenposten.no/webtv/#!/video/21039/trailer-sweatshop-i-can-t-take-any-more',
113 'md5': 'fd828cd29774a729bf4d4425fe192972',
117 'title': 'TRAILER: «SWEATSHOP» - I can´t take any more',
118 'description': 'md5:21891f2b0dd7ec2f78d84a50e54f8238',
120 'timestamp': 1417002452,
121 'upload_date': '20141126',
126 'skip_download': True,
130 'url': 'http://www.bt.no/tv/#!/video/100250/norling-dette-er-forskjellen-paa-1-divisjon-og-eliteserien',
131 'only_matching': True,
134 'url': 'http://ap.vgtv.no/webtv#!/video/111084/de-nye-bysyklene-lettere-bedre-gir-stoerre-hjul-og-feste-til-mobil',
135 'only_matching': True,
139 'url': 'http://www.vgtv.no/#!/video/127205/inside-the-mind-of-favela-funk',
140 'only_matching': True,
143 'url': 'http://tv.aftonbladet.se/abtv/articles/36015',
144 'only_matching': True,
147 'url': 'abtv:140026',
148 'only_matching': True,
151 'url': 'http://www.vgtv.no/video/84196/hevnen-er-soet-episode-10-abu',
152 'only_matching': True,
156 def _real_extract(self
, url
):
157 mobj
= re
.match(self
._VALID
_URL
, url
)
158 video_id
= mobj
.group('id')
159 host
= mobj
.group('host')
160 appname
= self
._HOST
_TO
_APPNAME
[host
] if host
else mobj
.group('appname')
161 vendor
= self
._APP
_NAME
_TO
_VENDOR
[appname
]
163 data
= self
._download
_json
(
164 'http://svp.vg.no/svp/api/v1/%s/assets/%s?appName=%s-website'
165 % (vendor
, video_id
, appname
),
166 video_id
, 'Downloading media JSON')
168 if data
.get('status') == 'inactive':
169 raise ExtractorError(
170 'Video %s is no longer available' % video_id
, expected
=True)
175 if len(video_id
) == 5:
176 if appname
== 'bttv':
177 info
= self
._extract
_video
_info
('btno', video_id
)
179 streams
= data
['streamUrls']
180 stream_type
= data
.get('streamType')
184 hls_url
= streams
.get('hls')
186 formats
.extend(self
._extract
_m
3u8_formats
(
187 hls_url
, video_id
, 'mp4', m3u8_id
='hls', fatal
=False))
189 hds_url
= streams
.get('hds')
191 hdcore_sign
= 'hdcore=3.7.0'
192 f4m_formats
= self
._extract
_f
4m
_formats
(
193 hds_url
+ '?%s' % hdcore_sign
, video_id
, f4m_id
='hds', fatal
=False)
195 for entry
in f4m_formats
:
196 # URLs without the extra param induce an 404 error
197 entry
.update({'extra_param_to_segment_url': hdcore_sign
})
198 formats
.append(entry
)
200 mp4_urls
= streams
.get('pseudostreaming') or []
201 mp4_url
= streams
.get('mp4')
203 mp4_urls
.append(mp4_url
)
204 for mp4_url
in mp4_urls
:
208 mobj
= re
.search(r
'(\d+)_(\d+)_(\d+)', mp4_url
)
210 tbr
= int(mobj
.group(3))
212 'width': int(mobj
.group(1)),
213 'height': int(mobj
.group(2)),
215 'format_id': 'mp4-%s' % tbr
,
217 formats
.append(format_info
)
219 info
['formats'].extend(formats
)
221 if not info
['formats']:
222 properties
= try_get(
223 data
, lambda x
: x
['streamConfiguration']['properties'], list)
224 if properties
and 'geoblocked' in properties
:
225 raise self
.raise_geo_restricted(
226 countries
=[host
.rpartition('.')[-1].partition('/')[0].upper()])
228 self
._sort
_formats
(info
['formats'])
232 'title': self
._live
_title
(data
['title']) if stream_type
== 'live' else data
['title'],
233 'description': data
['description'],
234 'thumbnail': data
['images']['main'] + '?t[]=900x506q80',
235 'timestamp': data
['published'],
236 'duration': float_or_none(data
['duration'], 1000),
237 'view_count': data
['displays'],
238 'is_live': True if stream_type
== 'live' else False,
243 class BTArticleIE(InfoExtractor
):
244 IE_NAME
= 'bt:article'
245 IE_DESC
= 'Bergens Tidende Articles'
246 _VALID_URL
= r
'https?://(?:www\.)?bt\.no/(?:[^/]+/)+(?P<id>[^/]+)-\d+\.html'
248 'url': 'http://www.bt.no/nyheter/lokalt/Kjemper-for-internatet-1788214.html',
249 'md5': '2acbe8ad129b3469d5ae51b1158878df',
253 'title': 'Alrekstad internat',
254 'description': 'md5:dc81a9056c874fedb62fc48a300dac58',
255 'thumbnail': r
're:^https?://.*\.jpg',
257 'timestamp': 1289991323,
258 'upload_date': '20101117',
263 def _real_extract(self
, url
):
264 webpage
= self
._download
_webpage
(url
, self
._match
_id
(url
))
265 video_id
= self
._search
_regex
(
266 r
'<video[^>]+data-id="(\d+)"', webpage
, 'video id')
267 return self
.url_result('bttv:%s' % video_id
, 'VGTV')
270 class BTVestlendingenIE(InfoExtractor
):
271 IE_NAME
= 'bt:vestlendingen'
272 IE_DESC
= 'Bergens Tidende - Vestlendingen'
273 _VALID_URL
= r
'https?://(?:www\.)?bt\.no/spesial/vestlendingen/#!/(?P<id>\d+)'
275 'url': 'http://www.bt.no/spesial/vestlendingen/#!/86588',
276 'md5': 'd7d17e3337dc80de6d3a540aefbe441b',
280 'title': 'Otto Wollertsen',
281 'description': 'Vestlendingen Otto Fredrik Wollertsen',
282 'timestamp': 1430473209,
283 'upload_date': '20150501',
287 'url': 'http://www.bt.no/spesial/vestlendingen/#!/86255',
288 'md5': 'a2893f8632e96389f4bdf36aa9463ceb',
292 'title': 'Du må tåle å fryse og være sulten',
293 'description': 'md5:b8046f4d022d5830ddab04865791d063',
294 'upload_date': '20150321',
295 'timestamp': 1426942023,
299 def _real_extract(self
, url
):
300 return self
.url_result('bttv:%s' % self
._match
_id
(url
), 'VGTV')