Ejemplo 1: cómo hacer un bucle de audio en js
myAudio = new Audio('someSound.ogg');
if (typeof myAudio.loop == 'boolean')
{
myAudio.loop = true;
}
else
{
myAudio.addEventListener('ended', function() {
this.currentTime = 0;
this.play();
}, false);
}
myAudio.play();
Ejemplo 2: lista de audio en bucle javascript
let audio = new Audio();
var playlist = this.state.sequence; // load the sequence of sounds
audio.src = playlist[0].src; // set the source of the first file in my array
audio.play();
// when the song ends, load the new sound
audio.addEventListener('ended', function(){
// increment playlist[i].src
}, true);
audio.loop = false;
Ejemplo 3: bucle de reproducción automática de etiquetas de audio html5
<audio controls loop autoplay height="" width="">
<source src="movie.mp3" type="audio/mp3" />
</audio>
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)