mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-23 18:06:50 +01:00
[soundcloud] Download Soundcloud GO+ high quality streams and private playlists
This commit is contained in:
parent
4d05f84325
commit
eb25901073
@ -289,10 +289,13 @@ class SoundcloudIE(InfoExtractor):
|
||||
raise ExtractorError('Unable to extract client id')
|
||||
|
||||
def _download_json(self, *args, **kwargs):
|
||||
non_fatal = kwargs.get('fatal') is False
|
||||
if non_fatal:
|
||||
del kwargs['fatal']
|
||||
non_fatal = not kwargs.get('fatal', True)
|
||||
query = kwargs.get('query', {}).copy()
|
||||
oauth_token = self._get_cookies(self._BASE_URL).get('oauth_token')
|
||||
if oauth_token:
|
||||
if not kwargs.get('headers'):
|
||||
kwargs['headers'] = {}
|
||||
kwargs['headers']['authorization'] = 'OAuth ' + oauth_token.value
|
||||
for _ in range(2):
|
||||
query['client_id'] = self._CLIENT_ID
|
||||
kwargs['query'] = query
|
||||
@ -319,6 +322,7 @@ class SoundcloudIE(InfoExtractor):
|
||||
track_id = compat_str(info['id'])
|
||||
title = info['title']
|
||||
|
||||
duration = info.get('duration')
|
||||
format_urls = set()
|
||||
formats = []
|
||||
query = {'client_id': self._CLIENT_ID}
|
||||
@ -335,12 +339,14 @@ class SoundcloudIE(InfoExtractor):
|
||||
if urlh:
|
||||
format_url = urlh.geturl()
|
||||
format_urls.add(format_url)
|
||||
filesize = int_or_none(urlh.headers.get('Content-Length'))
|
||||
formats.append({
|
||||
'format_id': 'download',
|
||||
'ext': urlhandle_detect_ext(urlh) or 'mp3',
|
||||
'filesize': int_or_none(urlh.headers.get('Content-Length')),
|
||||
'filesize': filesize,
|
||||
'url': format_url,
|
||||
'preference': 10,
|
||||
'abr': int_or_none(filesize, invscale=8, scale=duration),
|
||||
})
|
||||
|
||||
def invalid_url(url):
|
||||
@ -456,7 +462,7 @@ class SoundcloudIE(InfoExtractor):
|
||||
'title': title,
|
||||
'description': info.get('description'),
|
||||
'thumbnails': thumbnails,
|
||||
'duration': float_or_none(info.get('duration'), 1000),
|
||||
'duration': float_or_none(duration, 1000),
|
||||
'webpage_url': info.get('permalink_url'),
|
||||
'license': info.get('license'),
|
||||
'view_count': extract_count('playback'),
|
||||
|
Loading…
Reference in New Issue
Block a user