1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-20 14:36:52 +02:00

[extractor/common] Fix rtmp and rtsp formats' URLs in _extract_wowza_formats

This commit is contained in:
Sergey M․ 2017-05-17 22:19:33 +07:00
parent 6f76679804
commit f2e2f0c777
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D

View File

@ -2207,7 +2207,7 @@ def _extract_wowza_formats(self, url, video_id, m3u8_entry_protocol='m3u8_native
url = re.sub(r'/(?:manifest|playlist|jwplayer)\.(?:m3u8|f4m|mpd|smil)', '', url)
url_base = self._search_regex(
r'(?:(?:https?|rtmp|rtsp):)?(//[^?]+)', url, 'format url')
http_base_url = self._proto_relative_url(url_base, scheme='http:')
http_base_url = '%s:%s' % ('http', url_base)
formats = []
if 'm3u8' not in skip_protocols:
formats.extend(self._extract_m3u8_formats(
@ -2241,7 +2241,7 @@ def _extract_wowza_formats(self, url, video_id, m3u8_entry_protocol='m3u8_native
for protocol in ('rtmp', 'rtsp'):
if protocol not in skip_protocols:
formats.append({
'url': protocol + url_base,
'url': '%s:%s' % (protocol, url_base),
'format_id': protocol,
'protocol': protocol,
})