]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/tvplay.py
2 from __future__
import unicode_literals
6 from .common
import InfoExtractor
25 class TVPlayIE(InfoExtractor
):
27 IE_DESC
= 'MTG services'
34 tvplay(?:\.skaties)?\.lv/parraides|
35 (?:tv3play|play\.tv3)\.lt/programos|
36 tv3play(?:\.tv3)?\.ee/sisu|
37 (?:tv(?:3|6|8|10)play|viafree)\.se/program|
38 (?:(?:tv3play|viasat4play|tv6play|viafree)\.no|(?:tv3play|viafree)\.dk)/programmer|
39 play\.novatv\.bg/programi
47 'url': 'http://www.tvplay.lv/parraides/vinas-melo-labak/418113?autostart=true',
48 'md5': 'a1612fe0849455423ad8718fe049be21',
52 'title': 'Kādi ir īri? - Viņas melo labāk',
53 'description': 'Baiba apsmej īrus, kādi tie ir un ko viņi dara.',
54 'series': 'Viņas melo labāk',
58 'timestamp': 1406097056,
59 'upload_date': '20140723',
63 'url': 'http://play.tv3.lt/programos/moterys-meluoja-geriau/409229?autostart=true',
67 'title': 'Moterys meluoja geriau',
68 'description': 'md5:9aec0fc68e2cbc992d2a140bd41fa89e',
69 'series': 'Moterys meluoja geriau',
71 'season': '1 sezonas',
74 'timestamp': 1403769181,
75 'upload_date': '20140626',
79 'skip_download': True,
83 'url': 'http://www.tv3play.ee/sisu/kodu-keset-linna/238551?autostart=true',
87 'title': 'Kodu keset linna 398537',
88 'description': 'md5:7df175e3c94db9e47c0d81ffa5d68701',
90 'timestamp': 1292449761,
91 'upload_date': '20101215',
95 'skip_download': True,
99 'url': 'http://www.tv3play.se/program/husraddarna/395385?autostart=true',
103 'title': 'Husräddarna S02E07',
104 'description': 'md5:f210c6c89f42d4fc39faa551be813777',
106 'timestamp': 1400596321,
107 'upload_date': '20140520',
110 'skip_download': True,
114 'url': 'http://www.tv6play.se/program/den-sista-dokusapan/266636?autostart=true',
118 'title': 'Den sista dokusåpan S01E08',
119 'description': 'md5:295be39c872520221b933830f660b110',
121 'timestamp': 1330522854,
122 'upload_date': '20120229',
126 'skip_download': True,
130 'url': 'http://www.tv8play.se/program/antikjakten/282756?autostart=true',
134 'title': 'Antikjakten S01E10',
135 'description': 'md5:1b201169beabd97e20c5ad0ad67b13b8',
137 'timestamp': 1348575868,
138 'upload_date': '20120925',
141 'skip_download': True,
145 'url': 'http://www.tv3play.no/programmer/anna-anka-soker-assistent/230898?autostart=true',
149 'title': 'Anna Anka søker assistent - Ep. 8',
150 'description': 'md5:f80916bf5bbe1c5f760d127f8dd71474',
152 'timestamp': 1277720005,
153 'upload_date': '20100628',
156 'skip_download': True,
160 'url': 'http://www.viasat4play.no/programmer/budbringerne/21873?autostart=true',
164 'title': 'Budbringerne program 10',
165 'description': 'md5:4db78dc4ec8a85bb04fd322a3ee5092d',
167 'timestamp': 1254205102,
168 'upload_date': '20090929',
171 'skip_download': True,
175 'url': 'http://www.tv6play.no/programmer/hotelinspektor-alex-polizzi/361883?autostart=true',
179 'title': 'Hotelinspektør Alex Polizzi - Ep. 10',
180 'description': 'md5:3ecf808db9ec96c862c8ecb3a7fdaf81',
182 'timestamp': 1393236292,
183 'upload_date': '20140224',
186 'skip_download': True,
190 'url': 'http://play.novatv.bg/programi/zdravei-bulgariya/624952?autostart=true',
194 'title': 'Здравей, България (12.06.2015 г.) ',
195 'description': 'md5:99f3700451ac5bb71a260268b8daefd7',
197 'timestamp': 1434100372,
198 'upload_date': '20150612',
202 'skip_download': True,
206 'url': 'http://tvplay.skaties.lv/parraides/vinas-melo-labak/418113?autostart=true',
207 'only_matching': True,
211 'url': 'http://tvplay.skaties.lv/parraides/tv3-zinas/760183',
212 'only_matching': True,
215 'url': 'http://tv3play.tv3.ee/sisu/kodu-keset-linna/238551?autostart=true',
216 'only_matching': True,
219 'url': 'http://www.viafree.se/program/underhallning/i-like-radio-live/sasong-1/676869',
220 'only_matching': True,
224 'only_matching': True,
228 def _real_extract(self
, url
):
229 url
, smuggled_data
= unsmuggle_url(url
, {})
230 self
._initialize
_geo
_bypass
({
231 'countries': smuggled_data
.get('geo_countries'),
234 video_id
= self
._match
_id
(url
)
235 geo_country
= self
._search
_regex
(
236 r
'https?://[^/]+\.([a-z]{2})', url
,
237 'geo country', default
=None)
239 self
._initialize
_geo
_bypass
({'countries': [geo_country
.upper()]})
240 video
= self
._download
_json
(
241 'http://playapi.mtgx.tv/v3/videos/%s' % video_id
, video_id
, 'Downloading video JSON')
243 title
= video
['title']
246 streams
= self
._download
_json
(
247 'http://playapi.mtgx.tv/v3/videos/stream/%s' % video_id
,
248 video_id
, 'Downloading streams JSON')
249 except ExtractorError
as e
:
250 if isinstance(e
.cause
, compat_HTTPError
) and e
.cause
.code
== 403:
251 msg
= self
._parse
_json
(e
.cause
.read().decode('utf-8'), video_id
)
252 raise ExtractorError(msg
['msg'], expected
=True)
255 quality
= qualities(['hls', 'medium', 'high'])
257 for format_id
, video_url
in streams
.get('streams', {}).items():
258 if not video_url
or not isinstance(video_url
, compat_str
):
260 ext
= determine_ext(video_url
)
262 formats
.extend(self
._extract
_f
4m
_formats
(
263 update_url_query(video_url
, {
265 'plugin': 'aasp-3.5.0.151.81'
266 }), video_id
, f4m_id
='hds', fatal
=False))
268 formats
.extend(self
._extract
_m
3u8_formats
(
269 video_url
, video_id
, 'mp4', 'm3u8_native',
270 m3u8_id
='hls', fatal
=False))
273 'format_id': format_id
,
274 'quality': quality(format_id
),
277 if video_url
.startswith('rtmp'):
278 if smuggled_data
.get('skip_rtmp'):
281 r
'^(?P<url>rtmp://[^/]+/(?P<app>[^/]+))/(?P<playpath>.+)$', video_url
)
286 'url': m
.group('url'),
287 'app': m
.group('app'),
288 'play_path': m
.group('playpath'),
296 if not formats
and video
.get('is_geo_blocked'):
297 self
.raise_geo_restricted(
298 'This content might not be available in your country due to copyright reasons')
300 self
._sort
_formats
(formats
)
302 # TODO: webvtt in m3u8
304 sami_path
= video
.get('sami_path')
306 lang
= self
._search
_regex
(
307 r
'_([a-z]{2})\.xml', sami_path
, 'lang',
308 default
=compat_urlparse
.urlparse(url
).netloc
.rsplit('.', 1)[-1])
313 series
= video
.get('format_title')
314 episode_number
= int_or_none(video
.get('format_position', {}).get('episode'))
315 season
= video
.get('_embedded', {}).get('season', {}).get('title')
316 season_number
= int_or_none(video
.get('format_position', {}).get('season'))
321 'description': video
.get('description'),
323 'episode_number': episode_number
,
325 'season_number': season_number
,
326 'duration': int_or_none(video
.get('duration')),
327 'timestamp': parse_iso8601(video
.get('created_at')),
328 'view_count': try_get(video
, lambda x
: x
['views']['total'], int),
329 'age_limit': int_or_none(video
.get('age_limit', 0)),
331 'subtitles': subtitles
,
335 class ViafreeIE(InfoExtractor
):
336 _VALID_URL
= r
'''(?x)
341 (?:dk|no)/programmer|
344 /(?:[^/]+/)+(?P<id>[^/?#&]+)
347 'url': 'http://www.viafree.se/program/livsstil/husraddarna/sasong-2/avsnitt-2',
351 'title': 'Husräddarna S02E02',
352 'description': 'md5:4db5c933e37db629b5a2f75dfb34829e',
353 'series': 'Husräddarna',
354 'season': 'Säsong 2',
357 'timestamp': 1400596321,
358 'upload_date': '20140520',
361 'skip_download': True,
363 'add_ie': [TVPlayIE
.ie_key()],
366 'url': 'http://www.viafree.se/program/reality/sommaren-med-youtube-stjarnorna/sasong-1/avsnitt-1',
370 'title': 'Sommaren med YouTube-stjärnorna S01E01',
371 'description': 'md5:2bc69dce2c4bb48391e858539bbb0e3f',
372 'series': 'Sommaren med YouTube-stjärnorna',
373 'season': 'Säsong 1',
376 'timestamp': 1470905572,
377 'upload_date': '20160811',
380 'skip_download': True,
382 'add_ie': [TVPlayIE
.ie_key()],
384 # Different og:image URL schema
385 'url': 'http://www.viafree.se/program/reality/sommaren-med-youtube-stjarnorna/sasong-1/avsnitt-2',
386 'only_matching': True,
388 'url': 'http://www.viafree.no/programmer/underholdning/det-beste-vorspielet/sesong-2/episode-1',
389 'only_matching': True,
391 'url': 'http://www.viafree.dk/programmer/reality/paradise-hotel/saeson-7/episode-5',
392 'only_matching': True,
396 def suitable(cls
, url
):
397 return False if TVPlayIE
.suitable(url
) else super(ViafreeIE
, cls
).suitable(url
)
399 def _real_extract(self
, url
):
400 video_id
= self
._match
_id
(url
)
402 webpage
= self
._download
_webpage
(url
, video_id
)
404 data
= self
._parse
_json
(
406 r
'(?s)window\.App\s*=\s*({.+?})\s*;\s*</script',
407 webpage
, 'data', default
='{}'),
408 video_id
, transform_source
=lambda x
: re
.sub(
409 r
'(?s)function\s+[a-zA-Z_][\da-zA-Z_]*\s*\([^)]*\)\s*{[^}]*}\s*',
410 'null', x
), fatal
=False)
416 data
, lambda x
: x
['context']['dispatcher']['stores'][
417 'ContentPageProgramStore']['currentVideo']['id'],
420 # Fallback #1 (extract from og:image URL schema)
422 thumbnail
= self
._og
_search
_thumbnail
(webpage
, default
=None)
424 video_id
= self
._search
_regex
(
426 # http://cdn.playapi.mtgx.tv/imagecache/600x315/cloud/content-images/inbox/765166/a2e95e5f1d735bab9f309fa345cc3f25.jpg
427 # http://cdn.playapi.mtgx.tv/imagecache/600x315/cloud/content-images/seasons/15204/758770/4a5ba509ca8bc043e1ebd1a76131cdf2.jpg
428 r
'https?://[^/]+/imagecache/(?:[^/]+/)+(\d{6,})/',
429 thumbnail
, 'video id', default
=None)
431 # Fallback #2. Extract from raw JSON string.
432 # May extract wrong video id if relatedClips is present.
434 video_id
= self
._search
_regex
(
435 r
'currentVideo["\']\s
*:\s
*.+?
["\']id["\']\s
*:\s
*["\'](\d{6,})',
438 return self.url_result(
443 compat_urlparse.urlparse(url).netloc.rsplit('.', 1)[-1]],
444 # rtmp host mtgfs.fplive.net for viafree is unresolvable
447 ie=TVPlayIE.ie_key(), video_id=video_id)