我如何获得MP3流海报图片

时间:2014-03-31 06:24:38

标签: javascript jquery html5 html5-audio

对于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流的海报?

1 个答案:

答案 0 :(得分:2)

使用html5媒体API无法实现。但是AntónioAfonso的id3 lib读者可以。