playlist_tools.ql
Function | Description |
---|---|
native fun createPlaylist(name) | Creates a new playlist with the given name. |
native fun createPlaylist(name, desc) | Creates a new playlist with the given name and description. |
native fun addToPlaylist(playlist, songList) | Adds the given song list to the given playlist. |
Creates a new playlist with the given name.
name
( string )
|
The name of the playlist |
The created playlist
Creates a new playlist with the given name and description.
The created playlist
Adds the given song list to the given playlist.
playlist
( collection )
|
The playlist to add the songs to |
songList
( list )
|
The list of songs to add to the playlist |