pglevy / thats-the-pod

https://pglevy.github.io/thats-the-pod/
The Unlicense
0 stars 0 forks source link

Trigger mark as played automatically when end of file reached #16

Closed pglevy closed 4 months ago

pglevy commented 4 months ago

something like this:

const audio = document.getElementById('myAudio');

audio.addEventListener('ended', function() {
    console.log('Audio playback has ended');
    // Your code here
});