]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/rtp.py
2 from __future__
import unicode_literals
6 from .common
import InfoExtractor
9 class RTPIE(InfoExtractor
):
10 _VALID_URL
= r
'https?://(?:www\.)?rtp\.pt/play/p(?P<program_id>[0-9]+)/(?P<id>[^/?#]+)/?'
12 'url': 'http://www.rtp.pt/play/p405/e174042/paixoes-cruzadas',
13 'md5': 'e736ce0c665e459ddb818546220b4ef8',
17 'title': 'Paixões Cruzadas',
18 'description': 'As paixões musicais de António Cartaxo e António Macedo',
19 'thumbnail': 're:^https?://.*\.jpg',
22 'url': 'http://www.rtp.pt/play/p831/a-quimica-das-coisas',
23 'only_matching': True,
26 def _real_extract(self
, url
):
27 video_id
= self
._match
_id
(url
)
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
)
35 player_config
= self
._search
_regex
(
36 r
'(?s)RTPPLAY\.player\.newPlayer\(\s*(\{.*?\})\s*\)', webpage
, 'player config')
37 config
= self
._parse
_json
(player_config
, video_id
)
39 path
, ext
= config
.get('file').rsplit('.', 1)
43 'vcodec': config
.get('type') == 'audio' and 'none' or None,
45 'url': 'rtmp://{streamer:s}/{application:s}'.format(**config
),
46 'app': config
.get('application'),
47 'play_path': '{ext:s}:{path:s}'.format(ext
=ext
, path
=path
),
49 'rtmp_live': config
.get('live', False),
50 'player_url': 'http://programas.rtp.pt/play/player.swf?v3',
51 'rtmp_real_time': True,
54 # Construct regular HTTP download URLs
58 'pattern': r
'^nas2\.share/wavrss/',
59 'repl': 'http://rsspod.rtp.pt/podcasts/',
63 'format_id': 'mp4_h264',
64 'pattern': r
'^nas2\.share/h264/',
65 'repl': 'http://rsspod.rtp.pt/videocasts/',
69 r
= replacements
[config
['type']]
70 if re
.match(r
['pattern'], config
['file']) is not None:
72 'format_id': r
['format_id'],
73 'url': re
.sub(r
['pattern'], r
['repl'], config
['file']),
74 'vcodec': r
['vcodec'],
77 self
._sort
_formats
(formats
)
83 'description': description
,
84 'thumbnail': thumbnail
,