I think I'm right in saying you need to do something like
player.add({
clear: true,
playlist: [fileOrStream]
})
.then(player.play)
.then(function () {
return player.seek({time: seekTime});
});
?
If so we need to document this pattern. I may have missed it, mind you.
I think I'm right in saying you need to do something like
?
If so we need to document this pattern. I may have missed it, mind you.