mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-10-31 22:55:26 +00:00
[soundcloud:playlist] Provide video id for playlist entries (Closes #10733)
This commit is contained in:
parent
71ad00c09f
commit
24628cf7db
1 changed files with 5 additions and 1 deletions
|
@ -477,7 +477,11 @@ class SoundcloudPlaylistIE(SoundcloudIE):
|
|||
data = self._download_json(
|
||||
base_url + data, playlist_id, 'Downloading playlist')
|
||||
|
||||
entries = [self.url_result(track['permalink_url'], 'Soundcloud') for track in data['tracks']]
|
||||
entries = [
|
||||
self.url_result(
|
||||
track['permalink_url'], SoundcloudIE.ie_key(),
|
||||
video_id=compat_str(track['id']) if track.get('id') else None)
|
||||
for track in data['tracks'] if track.get('permalink_url')]
|
||||
|
||||
return {
|
||||
'_type': 'playlist',
|
||||
|
|
Loading…
Reference in a new issue