首页 > 解决方案 > 显示直播 v2 流的专辑封面

问题描述

我有一个广播服务器 v2.6 和一个在同一服务器上带有播放器的网站。播放器已从音频流中显示标题和艺术家。使用shoutcast 2 流,我们可以简单地通过这个URL 显示专辑封面: url_of_the_server/playingart?sid=1 (对于流1)但它必须刷新所以,我是一个新手,你能帮我获得一个代码显示此 url 并刷新它而不刷新页面,因此必须在 javascript 或 jquery 中。谢谢

标签: shoutcastalbumart

解决方案


这是 Jquery 的示例代码

function loadImage(){
 $.ajax({
  url: 'url_of_the_server/playingart?sid=1',
  type: 'get',
  success: function(response){
   // Display image from response
  }
 });
}

$(document).ready(function(){
 // Run every 5 seconds
 setInterval(loadImage, 5000);
});

另一种选择是每 5 秒删除一次图像并用新 URL 替换它


推荐阅读