I would like to display the current time of of an html 5 audio element and the duration of that element. I've been looking over the internet but can't find a functional script which allows me to display how long the audio files is and what the time currently is e.g. 1:35 / 3:20.

Any one got any ideas :)?

link|improve this question

1  
Try audio.currentTime gives anything? I not sure if it will work. – c2h2 Feb 14 '11 at 14:32
how would I add that it? – Lenny Magico Feb 14 '11 at 14:36
how would I add that in? <script type="text/javascript">audio.currentTime</script>? – Lenny Magico Feb 14 '11 at 14:37
feedback

2 Answers

up vote 5 down vote accepted

Here's an example:

<audio id="track" src="http://upload.wikimedia.org/wikipedia/commons/a/a9/Tromboon-sample.ogg"
       ontimeupdate="document.getElementById('tracktime').innerHTML = Math.floor(this.currentTime) + ' / ' + Math.floor(this.duration);">
    <p>Your browser does not support the audio element</p>
</audio>
<span id="tracktime">0 / 0</span>
<button onclick="document.getElementById('track').play();">Play</button>

This should work in Firefox and Chrome, for other browsers you'll probably need to add alternative encodings.

link|improve this answer
Brilliant thanks :D – Lenny Magico Feb 14 '11 at 15:06
Works in Safari :D – Lenny Magico Feb 14 '11 at 15:13
feedback

here is simple usage. keep in mind html5 elements are still in the works so anything can change:

    audio = document.getElementsByTagName("audio")[0];

    //functions
    audio.load();
    audio.play();
    audio.pause();

    //properties
    audio.currentSrc  
    audio.currentTime  
    audio.duration

here is the reference HTML5 Audio

to get the currentTime while audio is playing you must attach the timeupdate event and update your current time within the callback function.

simple tutorial audio/video html5 on dev.opera

link|improve this answer
Don't you love how your answers not correct unless you write the code the OP wants? Good answer. – Chris Buckler Feb 14 '11 at 15:10
i don't want to tinker with html5 until its official. too many browsers to debug lol =D thanks mate. – kjy112 Feb 14 '11 at 15:12
I'm not saying his answer is wrong, I just don't understand JS and html 5 audio is new to me so I didn't quite understand what to do with this :) – Lenny Magico Feb 14 '11 at 15:20
1  
Then start learning instead of copying code you don't know. When it bugs for some reason, you'll not be able to fix. – RaphaelDDL Nov 7 '11 at 12:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.