mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-11 07:10:30 +00:00
[radiocanada] extract more formats
This commit is contained in:
parent
b3d30315ce
commit
01a0c511eb
@ -12,6 +12,7 @@
|
|||||||
unified_strdate,
|
unified_strdate,
|
||||||
xpath_element,
|
xpath_element,
|
||||||
ExtractorError,
|
ExtractorError,
|
||||||
|
determine_protocol,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@ -36,7 +37,7 @@ class RadioCanadaIE(InfoExtractor):
|
|||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
app_code, video_id = re.match(self._VALID_URL, url).groups()
|
app_code, video_id = re.match(self._VALID_URL, url).groups()
|
||||||
|
|
||||||
device_types = ['ipad']
|
device_types = ['ipad', 'android']
|
||||||
if app_code != 'toutv':
|
if app_code != 'toutv':
|
||||||
device_types.append('flash')
|
device_types.append('flash')
|
||||||
|
|
||||||
@ -55,7 +56,7 @@ def _real_extract(self, url):
|
|||||||
# paysJ391wsHjbOJwvCs26toz and bypasslock are used to bypass geo-restriction
|
# paysJ391wsHjbOJwvCs26toz and bypasslock are used to bypass geo-restriction
|
||||||
'paysJ391wsHjbOJwvCs26toz': 'CA',
|
'paysJ391wsHjbOJwvCs26toz': 'CA',
|
||||||
'bypasslock': 'NZt5K62gRqfc',
|
'bypasslock': 'NZt5K62gRqfc',
|
||||||
})
|
}, fatal=False)
|
||||||
v_url = xpath_text(v_data, 'url')
|
v_url = xpath_text(v_data, 'url')
|
||||||
if not v_url:
|
if not v_url:
|
||||||
continue
|
continue
|
||||||
@ -67,7 +68,8 @@ def _real_extract(self, url):
|
|||||||
formats.extend(self._extract_m3u8_formats(
|
formats.extend(self._extract_m3u8_formats(
|
||||||
v_url, video_id, 'mp4', m3u8_id='hls', fatal=False))
|
v_url, video_id, 'mp4', m3u8_id='hls', fatal=False))
|
||||||
elif ext == 'f4m':
|
elif ext == 'f4m':
|
||||||
formats.extend(self._extract_f4m_formats(v_url, video_id, f4m_id='hds', fatal=False))
|
formats.extend(self._extract_f4m_formats(
|
||||||
|
v_url, video_id, f4m_id='hds', fatal=False))
|
||||||
else:
|
else:
|
||||||
ext = determine_ext(v_url)
|
ext = determine_ext(v_url)
|
||||||
bitrates = xpath_element(v_data, 'bitrates')
|
bitrates = xpath_element(v_data, 'bitrates')
|
||||||
@ -75,15 +77,28 @@ def _real_extract(self, url):
|
|||||||
tbr = int_or_none(url_e.get('bitrate'))
|
tbr = int_or_none(url_e.get('bitrate'))
|
||||||
if not tbr:
|
if not tbr:
|
||||||
continue
|
continue
|
||||||
|
f_url = re.sub(r'\d+\.%s' % ext, '%d.%s' % (tbr, ext), v_url)
|
||||||
|
protocol = determine_protocol({'url': f_url})
|
||||||
formats.append({
|
formats.append({
|
||||||
'format_id': 'rtmp-%d' % tbr,
|
'format_id': '%s-%d' % (protocol, tbr),
|
||||||
'url': re.sub(r'\d+\.%s' % ext, '%d.%s' % (tbr, ext), v_url),
|
'url': f_url,
|
||||||
'ext': 'flv',
|
'ext': 'flv' if protocol == 'rtmp' else ext,
|
||||||
'protocol': 'rtmp',
|
'protocol': protocol,
|
||||||
'width': int_or_none(url_e.get('width')),
|
'width': int_or_none(url_e.get('width')),
|
||||||
'height': int_or_none(url_e.get('height')),
|
'height': int_or_none(url_e.get('height')),
|
||||||
'tbr': tbr,
|
'tbr': tbr,
|
||||||
})
|
})
|
||||||
|
if protocol == 'rtsp':
|
||||||
|
base_url = self._search_regex(
|
||||||
|
r'rtsp://([^?]+)', f_url, 'base url', default=None)
|
||||||
|
if base_url:
|
||||||
|
base_url = 'http://' + base_url
|
||||||
|
formats.extend(self._extract_m3u8_formats(
|
||||||
|
base_url + '/playlist.m3u8', video_id, 'mp4',
|
||||||
|
'm3u8_native', m3u8_id='hls', fatal=False))
|
||||||
|
formats.extend(self._extract_f4m_formats(
|
||||||
|
base_url + '/manifest.f4m', video_id,
|
||||||
|
f4m_id='hds', fatal=False))
|
||||||
self._sort_formats(formats)
|
self._sort_formats(formats)
|
||||||
|
|
||||||
metadata = self._download_xml(
|
metadata = self._download_xml(
|
||||||
|
Loading…
Reference in New Issue
Block a user