mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-06 01:22:35 +00:00
[rai] return non http relinker URL intact(closes #17055)
This commit is contained in:
parent
ad1bc71a8a
commit
0c7b4f49eb
@ -32,6 +32,9 @@ class RaiBaseIE(InfoExtractor):
|
|||||||
_GEO_BYPASS = False
|
_GEO_BYPASS = False
|
||||||
|
|
||||||
def _extract_relinker_info(self, relinker_url, video_id):
|
def _extract_relinker_info(self, relinker_url, video_id):
|
||||||
|
if not re.match(r'https?://', relinker_url):
|
||||||
|
return {'formats': [{'url': relinker_url}]}
|
||||||
|
|
||||||
formats = []
|
formats = []
|
||||||
geoprotection = None
|
geoprotection = None
|
||||||
is_live = None
|
is_live = None
|
||||||
@ -369,6 +372,10 @@ class RaiIE(RaiBaseIE):
|
|||||||
'params': {
|
'params': {
|
||||||
'skip_download': True,
|
'skip_download': True,
|
||||||
},
|
},
|
||||||
|
}, {
|
||||||
|
# Direct MMS URL
|
||||||
|
'url': 'http://www.rai.it/dl/RaiTV/programmi/media/ContentItem-b63a4089-ac28-48cf-bca5-9f5b5bc46df5.html',
|
||||||
|
'only_matching': True,
|
||||||
}]
|
}]
|
||||||
|
|
||||||
def _extract_from_content_id(self, content_id, url):
|
def _extract_from_content_id(self, content_id, url):
|
||||||
|
Loading…
Reference in New Issue
Block a user