waveform-playlist
waveform-playlist copied to clipboard
Pause event does not include pause state
Question: How do I intercept mute/unmute and take different actions based on mute state?
I have the following code:
this.playlist.ee.on("mute", function(track) {
console.log("Track: " + track.name + " muteFlag is " + track.data);
});
But I am confused what attribute on track object can I use to find the mute state (whether the track will be muted or unmuted)? Web inspector did not reveal anything which can tell me...
Thanks!