]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/vgtv.py
14e945d494cd2f6e5f3b3e6a03ff6ebb076826dd
2 from __future__
import unicode_literals
6 from .common
import InfoExtractor
7 from .xstream
import XstreamIE
14 class VGTVIE(XstreamIE
):
15 IE_DESC
= 'VGTV, BTTV, FTV, Aftenposten and Aftonbladet'
20 'aftenbladet.no/tv': 'satv',
21 'fvn.no/fvntv': 'fvntv',
22 'aftenposten.no/webtv': 'aptv',
25 _APP_NAME_TO_VENDOR
= {
34 (?:https?://(?:www\.)?
47 ''' % ('|'.join(_HOST_TO_APPNAME
.keys()), '|'.join(_APP_NAME_TO_VENDOR
.keys()))
52 'url': 'http://www.vgtv.no/#!/video/84196/hevnen-er-soet-episode-10-abu',
53 'md5': 'b8be7a234cebb840c0d512c78013e02f',
57 'title': 'Hevnen er søt: Episode 10 - Abu',
58 'description': 'md5:e25e4badb5f544b04341e14abdc72234',
59 'thumbnail': 're:^https?://.*\.jpg',
61 'timestamp': 1404626400,
62 'upload_date': '20140706',
68 'url': 'http://www.vgtv.no/#!/live/100764/opptak-vgtv-foelger-em-kvalifiseringen',
72 'title': 'OPPTAK: VGTV følger EM-kvalifiseringen',
73 'description': 'md5:3772d9c0dc2dff92a886b60039a7d4d3',
74 'thumbnail': 're:^https?://.*\.jpg',
76 'timestamp': 1410113864,
77 'upload_date': '20140907',
82 'skip_download': True,
84 'skip': 'Video is no longer available',
88 'url': 'http://www.vgtv.no/#!/live/113063/direkte-v75-fra-solvalla',
92 'title': 'V75 fra Solvalla 30.05.15',
93 'description': 'md5:b3743425765355855f88e096acc93231',
94 'thumbnail': 're:^https?://.*\.jpg',
96 'timestamp': 1432975582,
97 'upload_date': '20150530',
102 'skip_download': True,
106 'url': 'http://www.aftenposten.no/webtv/#!/video/21039/trailer-sweatshop-i-can-t-take-any-more',
107 'md5': 'fd828cd29774a729bf4d4425fe192972',
111 'title': 'TRAILER: «SWEATSHOP» - I can´t take any more',
112 'description': 'md5:21891f2b0dd7ec2f78d84a50e54f8238',
114 'timestamp': 1417002452,
115 'upload_date': '20141126',
120 'url': 'http://www.bt.no/tv/#!/video/100250/norling-dette-er-forskjellen-paa-1-divisjon-og-eliteserien',
121 'only_matching': True,
125 def _real_extract(self
, url
):
126 mobj
= re
.match(self
._VALID
_URL
, url
)
127 video_id
= mobj
.group('id')
128 host
= mobj
.group('host')
129 appname
= self
._HOST
_TO
_APPNAME
[host
] if host
else mobj
.group('appname')
130 vendor
= self
._APP
_NAME
_TO
_VENDOR
[appname
]
132 data
= self
._download
_json
(
133 'http://svp.vg.no/svp/api/v1/%s/assets/%s?appName=%s-website'
134 % (vendor
, video_id
, appname
),
135 video_id
, 'Downloading media JSON')
137 if data
.get('status') == 'inactive':
138 raise ExtractorError(
139 'Video %s is no longer available' % video_id
, expected
=True)
144 if len(video_id
) == 5:
145 if appname
== 'bttv':
146 info
= self
._extract
_video
_info
('btno', video_id
)
147 elif appname
== 'aptv':
148 info
= self
._extract
_video
_info
('ap', video_id
)
150 streams
= data
['streamUrls']
151 stream_type
= data
.get('streamType')
155 hls_url
= streams
.get('hls')
157 formats
.extend(self
._extract
_m
3u8_formats
(
158 hls_url
, video_id
, 'mp4', m3u8_id
='hls', fatal
=False))
160 hds_url
= streams
.get('hds')
162 hdcore_sign
= 'hdcore=3.7.0'
163 f4m_formats
= self
._extract
_f
4m
_formats
(
164 hds_url
+ '?%s' % hdcore_sign
, video_id
, f4m_id
='hds', fatal
=False)
166 for entry
in f4m_formats
:
167 # URLs without the extra param induce an 404 error
168 entry
.update({'extra_param_to_segment_url': hdcore_sign
})
169 formats
.append(entry
)
171 mp4_urls
= streams
.get('pseudostreaming') or []
172 mp4_url
= streams
.get('mp4')
174 mp4_urls
.append(mp4_url
)
175 for mp4_url
in mp4_urls
:
179 mobj
= re
.search('(\d+)_(\d+)_(\d+)', mp4_url
)
181 tbr
= int(mobj
.group(3))
183 'width': int(mobj
.group(1)),
184 'height': int(mobj
.group(2)),
186 'format_id': 'mp4-%s' % tbr
,
188 formats
.append(format_info
)
190 info
['formats'].extend(formats
)
192 self
._sort
_formats
(info
['formats'])
196 'title': self
._live
_title
(data
['title']) if stream_type
== 'live' else data
['title'],
197 'description': data
['description'],
198 'thumbnail': data
['images']['main'] + '?t[]=900x506q80',
199 'timestamp': data
['published'],
200 'duration': float_or_none(data
['duration'], 1000),
201 'view_count': data
['displays'],
202 'is_live': True if stream_type
== 'live' else False,
207 class BTArticleIE(InfoExtractor
):
208 IE_NAME
= 'bt:article'
209 IE_DESC
= 'Bergens Tidende Articles'
210 _VALID_URL
= 'http://(?:www\.)?bt\.no/(?:[^/]+/)+(?P<id>[^/]+)-\d+\.html'
212 'url': 'http://www.bt.no/nyheter/lokalt/Kjemper-for-internatet-1788214.html',
213 'md5': '2acbe8ad129b3469d5ae51b1158878df',
217 'title': 'Alrekstad internat',
218 'description': 'md5:dc81a9056c874fedb62fc48a300dac58',
219 'thumbnail': 're:^https?://.*\.jpg',
221 'timestamp': 1289991323,
222 'upload_date': '20101117',
227 def _real_extract(self
, url
):
228 webpage
= self
._download
_webpage
(url
, self
._match
_id
(url
))
229 video_id
= self
._search
_regex
(
230 r
'<video[^>]+data-id="(\d+)"', webpage
, 'video id')
231 return self
.url_result('bttv:%s' % video_id
, 'VGTV')
234 class BTVestlendingenIE(InfoExtractor
):
235 IE_NAME
= 'bt:vestlendingen'
236 IE_DESC
= 'Bergens Tidende - Vestlendingen'
237 _VALID_URL
= 'http://(?:www\.)?bt\.no/spesial/vestlendingen/#!/(?P<id>\d+)'
239 'url': 'http://www.bt.no/spesial/vestlendingen/#!/86588',
240 'md5': 'd7d17e3337dc80de6d3a540aefbe441b',
244 'title': 'Otto Wollertsen',
245 'description': 'Vestlendingen Otto Fredrik Wollertsen',
246 'timestamp': 1430473209,
247 'upload_date': '20150501',
251 'url': 'http://www.bt.no/spesial/vestlendingen/#!/86255',
252 'md5': 'a2893f8632e96389f4bdf36aa9463ceb',
256 'title': 'Du må tåle å fryse og være sulten',
257 'description': 'md5:b8046f4d022d5830ddab04865791d063',
258 'upload_date': '20150321',
259 'timestamp': 1426942023,
263 def _real_extract(self
, url
):
264 return self
.url_result('bttv:%s' % self
._match
_id
(url
), 'VGTV')