]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/rtp.py
[viewster] use head request to extract api token
[yt-dlp.git] / youtube_dl / extractor / rtp.py
CommitLineData
c3f3b29b
NJ
1# coding: utf-8
2from __future__ import unicode_literals
3
ad5747ba 4import re
c3f3b29b
NJ
5
6from .common import InfoExtractor
c3f3b29b
NJ
7
8
9class RTPIE(InfoExtractor):
bad5c1a3
PH
10 _VALID_URL = r'https?://(?:www\.)?rtp\.pt/play/p(?P<program_id>[0-9]+)/(?P<id>[^/?#]+)/?'
11 _TESTS = [{
c3f3b29b 12 'url': 'http://www.rtp.pt/play/p405/e174042/paixoes-cruzadas',
ad5747ba 13 'md5': 'e736ce0c665e459ddb818546220b4ef8',
c3f3b29b 14 'info_dict': {
a86cbf58 15 'id': 'e174042',
c3f3b29b
NJ
16 'ext': 'mp3',
17 'title': 'Paixões Cruzadas',
18 'description': 'As paixões musicais de António Cartaxo e António Macedo',
19 'thumbnail': 're:^https?://.*\.jpg',
20 },
bad5c1a3
PH
21 }, {
22 'url': 'http://www.rtp.pt/play/p831/a-quimica-das-coisas',
23 'only_matching': True,
24 }]
c3f3b29b
NJ
25
26 def _real_extract(self, url):
27 video_id = self._match_id(url)
28
29 webpage = self._download_webpage(url, video_id)
30 title = self._html_search_meta(
31 'twitter:title', webpage, display_name='title', fatal=True)
32 description = self._html_search_meta('description', webpage)
33 thumbnail = self._og_search_thumbnail(webpage)
34
35 player_config = self._search_regex(
36 r'(?s)RTPPLAY\.player\.newPlayer\(\s*(\{.*?\})\s*\)', webpage, 'player config')
ad5747ba 37 config = self._parse_json(player_config, video_id)
c3f3b29b
NJ
38
39 path, ext = config.get('file').rsplit('.', 1)
40 formats = [{
ad5747ba
NJ
41 'format_id': 'rtmp',
42 'ext': ext,
43 'vcodec': config.get('type') == 'audio' and 'none' or None,
44 'preference': -2,
45 'url': 'rtmp://{streamer:s}/{application:s}'.format(**config),
c3f3b29b
NJ
46 'app': config.get('application'),
47 'play_path': '{ext:s}:{path:s}'.format(ext=ext, path=path),
48 'page_url': url,
c3f3b29b 49 'rtmp_live': config.get('live', False),
c3f3b29b 50 'player_url': 'http://programas.rtp.pt/play/player.swf?v3',
1a2548d9 51 'rtmp_real_time': True,
c3f3b29b
NJ
52 }]
53
ad5747ba
NJ
54 # Construct regular HTTP download URLs
55 replacements = {
56 'audio': {
57 'format_id': 'mp3',
58 'pattern': r'^nas2\.share/wavrss/',
59 'repl': 'http://rsspod.rtp.pt/podcasts/',
60 'vcodec': 'none',
61 },
62 'video': {
63 'format_id': 'mp4_h264',
64 'pattern': r'^nas2\.share/h264/',
65 'repl': 'http://rsspod.rtp.pt/videocasts/',
66 'vcodec': 'h264',
67 },
68 }
69 r = replacements[config['type']]
70 if re.match(r['pattern'], config['file']) is not None:
71 formats.append({
72 'format_id': r['format_id'],
73 'url': re.sub(r['pattern'], r['repl'], config['file']),
74 'vcodec': r['vcodec'],
75 })
76
77 self._sort_formats(formats)
78
c3f3b29b
NJ
79 return {
80 'id': video_id,
81 'title': title,
82 'formats': formats,
83 'description': description,
84 'thumbnail': thumbnail,
85 }