пытаюсь разобраться с html5 audio
есть код
function durr(){
var sound = document.getElementById('player');
//document.getElementById('player').current_time
document.getElementById("text").innerHTML="длительность= "+sound.duration;
document.getElementById("texy").innerHTML="время= "+sound.currentTime;
document.getElementById("texu").innerHTML="звук= "+sound.muted;
document.getElementById("texi").innerHTML="пауза= "+sound.paused;
document.getElementById("texo").innerHTML="громкость= "+sound.volume;
document.getElementById("texp").innerHTML="повтор= "+sound.loop;
document.getElementById("texa").innerHTML="контроль= "+sound.controls;
var totalSeconds = sound.currentTime;
var minutes = Math.floor(totalSeconds / 60);
var seconds = Math.floor(totalSeconds % 60);
var pr = sound.currentTime / sound.duration * 200;
document.getElementById("time").innerHTML=minutes +":"+seconds;
document.getElementById('progess').value=pr;
sound.addEventListener("timeupdate", progress, false);
}
function progress(){
document.getElementById("texs").innerHTML="время2= "+sound.currentTime;
}
подскажите пожалуйста где проблема