Hello,
is it possible to support play and pause command on current playing media without launching a new video?
Something like this:
client.connect(host, function() {
// some method to load current player
client.loadCurrentPlayer(function(err, player) {
player.pause()
// ...
player.play()
})
})
or directly operating on client object (like stop/volume/mute/unmute action):
client.connect(host, function() {
client.pause()
// ...
client.play()
})
Hello,
is it possible to support
playandpausecommand on current playing media without launching a new video?Something like this:
or directly operating on client object (like stop/volume/mute/unmute action):