|
|
@ -181,30 +181,34 @@ class SoundcloudIE(InfoExtractor):
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
for key, stream_url in format_dict.items():
|
|
|
|
for key, stream_url in format_dict.items():
|
|
|
|
|
|
|
|
abr = int_or_none(self._search_regex(
|
|
|
|
|
|
|
|
r'_(\d+)_url', key, 'audio bitrate', default=None))
|
|
|
|
if key.startswith('http'):
|
|
|
|
if key.startswith('http'):
|
|
|
|
formats.append({
|
|
|
|
stream_formats = [{
|
|
|
|
'format_id': key,
|
|
|
|
'format_id': key,
|
|
|
|
'ext': ext,
|
|
|
|
'ext': ext,
|
|
|
|
'url': stream_url,
|
|
|
|
'url': stream_url,
|
|
|
|
'vcodec': 'none',
|
|
|
|
}]
|
|
|
|
})
|
|
|
|
|
|
|
|
elif key.startswith('rtmp'):
|
|
|
|
elif key.startswith('rtmp'):
|
|
|
|
# The url doesn't have an rtmp app, we have to extract the playpath
|
|
|
|
# The url doesn't have an rtmp app, we have to extract the playpath
|
|
|
|
url, path = stream_url.split('mp3:', 1)
|
|
|
|
url, path = stream_url.split('mp3:', 1)
|
|
|
|
formats.append({
|
|
|
|
stream_formats = [{
|
|
|
|
'format_id': key,
|
|
|
|
'format_id': key,
|
|
|
|
'url': url,
|
|
|
|
'url': url,
|
|
|
|
'play_path': 'mp3:' + path,
|
|
|
|
'play_path': 'mp3:' + path,
|
|
|
|
'ext': 'flv',
|
|
|
|
'ext': 'flv',
|
|
|
|
'vcodec': 'none',
|
|
|
|
}]
|
|
|
|
})
|
|
|
|
|
|
|
|
elif key.startswith('hls'):
|
|
|
|
elif key.startswith('hls'):
|
|
|
|
m3u8_formats = self._extract_m3u8_formats(
|
|
|
|
stream_formats = self._extract_m3u8_formats(
|
|
|
|
stream_url, track_id, 'mp3', entry_protocol='m3u8_native',
|
|
|
|
stream_url, track_id, 'mp3', entry_protocol='m3u8_native',
|
|
|
|
m3u8_id=key, fatal=False)
|
|
|
|
m3u8_id=key, fatal=False)
|
|
|
|
for f in m3u8_formats:
|
|
|
|
else:
|
|
|
|
f['vcodec'] = 'none'
|
|
|
|
continue
|
|
|
|
formats.extend(m3u8_formats)
|
|
|
|
|
|
|
|
|
|
|
|
for f in stream_formats:
|
|
|
|
|
|
|
|
f['abr'] = abr
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
formats.extend(stream_formats)
|
|
|
|
|
|
|
|
|
|
|
|
if not formats:
|
|
|
|
if not formats:
|
|
|
|
# We fallback to the stream_url in the original info, this
|
|
|
|
# We fallback to the stream_url in the original info, this
|
|
|
@ -213,14 +217,10 @@ class SoundcloudIE(InfoExtractor):
|
|
|
|
'format_id': 'fallback',
|
|
|
|
'format_id': 'fallback',
|
|
|
|
'url': info['stream_url'] + '?client_id=' + self._CLIENT_ID,
|
|
|
|
'url': info['stream_url'] + '?client_id=' + self._CLIENT_ID,
|
|
|
|
'ext': ext,
|
|
|
|
'ext': ext,
|
|
|
|
'vcodec': 'none',
|
|
|
|
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
for f in formats:
|
|
|
|
for f in formats:
|
|
|
|
if f['format_id'].startswith('http'):
|
|
|
|
f['vcodec'] = 'none'
|
|
|
|
f['protocol'] = 'http'
|
|
|
|
|
|
|
|
if f['format_id'].startswith('rtmp'):
|
|
|
|
|
|
|
|
f['protocol'] = 'rtmp'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
self._check_formats(formats, track_id)
|
|
|
|
self._check_formats(formats, track_id)
|
|
|
|
self._sort_formats(formats)
|
|
|
|
self._sort_formats(formats)
|
|
|
|