gpt4 book ai didi

javascript - 如何获取 MP3 流海报图像

转载 作者:行者123 更新时间:2023-12-02 17:34:24 26 4
gpt4 key购买 nike

对于 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 流的海报(如果有)?

最佳答案

使用 html5 媒体 API 是不可能的。但安东尼奥·阿方索的 id3 lib读者可以。

关于javascript - 如何获取 MP3 流海报图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22754811/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com