mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-06 14:47:06 +01:00
[rtp] Construct regular HTTP download URLs (#4882)
This commit is contained in:
parent
d6eb66ed3c
commit
ad5747bad1
@ -1,16 +1,16 @@
|
|||||||
# coding: utf-8
|
# coding: utf-8
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import json
|
import re
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import js_to_json
|
|
||||||
|
|
||||||
|
|
||||||
class RTPIE(InfoExtractor):
|
class RTPIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:www\.)?rtp\.pt/play/p(?P<program_id>[0-9]+)/(?P<id>[^/?#]+)/?'
|
_VALID_URL = r'https?://(?:www\.)?rtp\.pt/play/p(?P<program_id>[0-9]+)/(?P<id>[^/?#]+)/?'
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'http://www.rtp.pt/play/p405/e174042/paixoes-cruzadas',
|
'url': 'http://www.rtp.pt/play/p405/e174042/paixoes-cruzadas',
|
||||||
|
'md5': 'e736ce0c665e459ddb818546220b4ef8',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': 'e174042',
|
'id': 'e174042',
|
||||||
'ext': 'mp3',
|
'ext': 'mp3',
|
||||||
@ -18,9 +18,6 @@ class RTPIE(InfoExtractor):
|
|||||||
'description': 'As paixões musicais de António Cartaxo e António Macedo',
|
'description': 'As paixões musicais de António Cartaxo e António Macedo',
|
||||||
'thumbnail': 're:^https?://.*\.jpg',
|
'thumbnail': 're:^https?://.*\.jpg',
|
||||||
},
|
},
|
||||||
'params': {
|
|
||||||
'skip_download': True, # RTMP download
|
|
||||||
},
|
|
||||||
}, {
|
}, {
|
||||||
'url': 'http://www.rtp.pt/play/p831/a-quimica-das-coisas',
|
'url': 'http://www.rtp.pt/play/p831/a-quimica-das-coisas',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
@ -37,21 +34,48 @@ class RTPIE(InfoExtractor):
|
|||||||
|
|
||||||
player_config = self._search_regex(
|
player_config = self._search_regex(
|
||||||
r'(?s)RTPPLAY\.player\.newPlayer\(\s*(\{.*?\})\s*\)', webpage, 'player config')
|
r'(?s)RTPPLAY\.player\.newPlayer\(\s*(\{.*?\})\s*\)', webpage, 'player config')
|
||||||
config = json.loads(js_to_json(player_config))
|
config = self._parse_json(player_config, video_id)
|
||||||
|
|
||||||
path, ext = config.get('file').rsplit('.', 1)
|
path, ext = config.get('file').rsplit('.', 1)
|
||||||
formats = [{
|
formats = [{
|
||||||
|
'format_id': 'rtmp',
|
||||||
|
'ext': ext,
|
||||||
|
'vcodec': config.get('type') == 'audio' and 'none' or None,
|
||||||
|
'preference': -2,
|
||||||
|
'url': 'rtmp://{streamer:s}/{application:s}'.format(**config),
|
||||||
'app': config.get('application'),
|
'app': config.get('application'),
|
||||||
'play_path': '{ext:s}:{path:s}'.format(ext=ext, path=path),
|
'play_path': '{ext:s}:{path:s}'.format(ext=ext, path=path),
|
||||||
'page_url': url,
|
'page_url': url,
|
||||||
'url': 'rtmp://{streamer:s}/{application:s}'.format(**config),
|
|
||||||
'rtmp_live': config.get('live', False),
|
'rtmp_live': config.get('live', False),
|
||||||
'ext': ext,
|
|
||||||
'vcodec': config.get('type') == 'audio' and 'none' or None,
|
|
||||||
'player_url': 'http://programas.rtp.pt/play/player.swf?v3',
|
'player_url': 'http://programas.rtp.pt/play/player.swf?v3',
|
||||||
'rtmp_real_time': True,
|
'rtmp_real_time': True,
|
||||||
}]
|
}]
|
||||||
|
|
||||||
|
# Construct regular HTTP download URLs
|
||||||
|
replacements = {
|
||||||
|
'audio': {
|
||||||
|
'format_id': 'mp3',
|
||||||
|
'pattern': r'^nas2\.share/wavrss/',
|
||||||
|
'repl': 'http://rsspod.rtp.pt/podcasts/',
|
||||||
|
'vcodec': 'none',
|
||||||
|
},
|
||||||
|
'video': {
|
||||||
|
'format_id': 'mp4_h264',
|
||||||
|
'pattern': r'^nas2\.share/h264/',
|
||||||
|
'repl': 'http://rsspod.rtp.pt/videocasts/',
|
||||||
|
'vcodec': 'h264',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
r = replacements[config['type']]
|
||||||
|
if re.match(r['pattern'], config['file']) is not None:
|
||||||
|
formats.append({
|
||||||
|
'format_id': r['format_id'],
|
||||||
|
'url': re.sub(r['pattern'], r['repl'], config['file']),
|
||||||
|
'vcodec': r['vcodec'],
|
||||||
|
})
|
||||||
|
|
||||||
|
self._sort_formats(formats)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'title': title,
|
'title': title,
|
||||||
|
Loading…
Reference in New Issue
Block a user