Browse Source
[extractor/common] Fix rtmp and rtsp formats' URLs in _extract_wowza_formats
master
Sergey M․
7 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
2 additions and
2 deletions
-
youtube_dl/extractor/common.py
|
|
@ -2207,7 +2207,7 @@ class InfoExtractor(object): |
|
|
|
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 @@ class InfoExtractor(object): |
|
|
|
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, |
|
|
|
}) |
|
|
|