对于html5音频元素,使用Javasript我可以像这样控制音频元素的行为
播放/暂停
activeSong = document.getElementById("mainPlayer");
activeSong.play();
activeSong.pause();
用于获取我正在使用的元数据
activeSong.addEventListener('loadedmetadata', function() {
console.log("Playing " + activeSong.src + ", for: " + activeSong.duration + "seconds.");
$("#playListSeekBar .timers#timeLeft").html(String(Math.round(activeSong.duration)).toMMSS() + "");
});
我的问题是如何获得当前播放的MP3流的海报?