|
|
@ -282,9 +282,11 @@ class SoundcloudSetIE(SoundcloudIE):
|
|
|
|
msgs = (compat_str(err['error_message']) for err in info['errors'])
|
|
|
|
msgs = (compat_str(err['error_message']) for err in info['errors'])
|
|
|
|
raise ExtractorError('unable to download video webpage: %s' % ','.join(msgs))
|
|
|
|
raise ExtractorError('unable to download video webpage: %s' % ','.join(msgs))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
entries = [self.url_result(track['permalink_url'], 'Soundcloud') for track in info['tracks']]
|
|
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
'_type': 'playlist',
|
|
|
|
'_type': 'playlist',
|
|
|
|
'entries': [self._extract_info_dict(track, secret_token=token) for track in info['tracks']],
|
|
|
|
'entries': entries,
|
|
|
|
'id': '%s' % info['id'],
|
|
|
|
'id': '%s' % info['id'],
|
|
|
|
'title': info['title'],
|
|
|
|
'title': info['title'],
|
|
|
|
}
|
|
|
|
}
|
|
|
|