Audio.pause - HermesPasser/Ramu GitHub Wiki

Audio.pause()

Description

Pause the audio.

You can test this snippet of code here.

let symphony5 = new Ramu.Audio("https://upload.wikimedia.org/wikipedia/commons/a/ae/Wolfgang_Amadeus_Mozart_-_Klarinettenkonzert_A-Dur_-_3._Rondo_%28Allegro%29.ogg");
symphony5.play();
setTimeout(function(){ 
   symphony5.pause();
}, 10000);

See also Audio.play, Audio.resume and Audio.stop.