There will be a playerInstance.addTracks([urls]) method on player instances. The method should take an array of URLs or a single URL and append them to the currently loaded playlist.
This is different from calling update() with a new 'urls' parameter because the update method causes the player to reload the playlist. The addTracks method will just add tracks to the end of the current urls array without causing a reload of already-existing tracks.
There will be a
playerInstance.addTracks([urls])
method on player instances. The method should take an array of URLs or a single URL and append them to the currently loaded playlist.This is different from calling
update()
with a new 'urls' parameter because the update method causes the player to reload the playlist. The addTracks method will just add tracks to the end of the current urls array without causing a reload of already-existing tracks.