hello
voici mon codage de lecteur
<p style="text-align: center;"> </p>
<p style="text-align: center;"><span style="color: #ffff00;">5 Chansons Eurovision En Français</span></p>
<p> </p>
<div class="container-fluid row ">
<div class="col-md-4" style="padding-top: 35px;"><select id="liste" onclick="joue(this.value);" name="liste">
<option value="https://ekladata.com/4daCH1xXzBYauS-OkXytsg05gJI/01-Catherine-Ferry-1-2-3-1976.mp3">Un, Deux, Trois</option>
<option value="https://ekladata.com/RJq5--Ij023ohivdlW2_NFSck9w/02-Marie-Myriam-L-Oiseau-Et-L-Enfant-1978.mp3">L'Oiseau Et L'Enfant</option>
<option value="https://ekladata.com/g6OMddPxkwnz1aDYrS0M6I6V7X8/03-Sophie-Magaly-Papa-Pingouin-1980.mp3">Papa Pingouin</option>
<option value="https://ekladata.com/oQq9rray8GL57hpJg8KjaKt6n-Y/04-Joelle-Ursull-White-And-Black-Blues-1990.mp3">White And Black Blues</option>
<option value="https://ekladata.com/svU_fp4PpmITV3bVCwzfvMEu0lI/05-Natasha-St-Pier-Je-N-Ai-Que-Mon-Ame-2001.mp3">Je N'Ai Que Mon Ame</option>
</select></div>
<div id="Divlecteur" class="col-md-6"> </div>
</div>
<p>
<script>// <![CDATA[
var lecteur = document.createElement("AUDIO");
lecteur.id="mysong";
lecteur.src =document.getElementById("liste").value;
document.getElementById('Divlecteur').appendChild(lecteur);
var morceau = document.getElementById("mysong");
morceau.controls='true';
morceau.autoplay = false;
morceau.load();
morceau.onended = function() {
var nbr=document.getElementById("liste").length;
chanson= Math.floor(Math.random() * (nbr));
while (document.getElementById("mysong").src==document.getElementById("liste")[chanson].value)
{chanson= Math.floor(Math.random() * (nbr));}
document.getElementById("liste").selectedIndex = chanson;
document.getElementById("mysong").src=document.getElementById("liste")[chanson].value;
document.getElementById("mysong").autoplay = false;
document.getElementById("mysong").load();
}
function joue(musique) {
document.getElementById("mysong").src=musique;
document.getElementById("mysong").autoplay = false;
document.getElementById("mysong").load();
}
// ]]></script>
</p>
<p style="text-align: center;"> </p>
<p style="text-align: center;"> </p>
<p> </p>
<p> </p>
<p> </p>