I'm new to tone.js and I just want a simple pause button. I know that there is a stop() and start() but it's not a pause and when to start again the music just go to the beginning of the song.
I use tone.js because I want to manipulate the music and do some synthesizing sound. I also use p5.js but somehow the pause dose not work. It throws an error saying "Cannot read property 'length' of undefined. So I want to use tone.js but just have to figure out how to pause the music. Thanks.
Here's the code
var player = new Tone.Player("data/audio/singingbird_audio.mp3").toMaster();
var whale = new Tone.Player("data/audio/whale.mp3").toMaster();
whale.autostart = false;
whale.volume.value = -10;
player.autostart = false;
player.volume.value = 5;
player.stop();
button = createButton('Play Bird');
button.position(20, 200);
button.mousePressed(birdSwitch);
function birdSwitch() {
if (player.state == "started") {
player.stop();
whale.stop();
} else if (player.state == "stopped") {
player.start();
whale.start();
}
}
Tone.js is a bit of a overkill to just play an mp3 file.
Why not just using the
<audio>
-Tag? That way you can directly play and pause it.Codesandbox: https://codesandbox.io/s/charming-wiles-ehy8y
In Tonejs a player is just a wrapper around an audio buffer. Play, pausing, etc. is done by syncing the players to the Transport class and use Transports play, pause, stop functionalities. Which then propagates to the players. But since the Transport has an internal timeline I don't think that this is what you need, since you would have to reset the Transport to the correct position, etc.
I guess in the end it's way more convenient for you to just fall back to the simpler solution.