如何知道html5音频中缓冲数据的进度?

时间:2011-11-06 04:24:18

标签: html5-audio

将html5音频标签与Ogg媒体文件一起使用,如何使用javascript,检索客户端(实时)加载了多少数据。

1 个答案:

答案 0 :(得分:23)

<audio id="warp" preload="auto" controls>
    <source src="warp.mp3" type="audio/mp3">
    <source src="warp.ogg" type="audio/ogg">
</audio>
<script>
    var a = document.getElementById('warp');
    var t = a.currentTime;
    var d = a.duration;
    var z = a.buffered.end(a.buffered.length-1);
</script>

z是当前缓冲的音频秒数。 t是播放头所在音轨开头的秒数。 d是音轨的总秒数。