首页 > 解决方案 > 如何在 html 中播放在线电台

问题描述

收音机的给定 URL 是https://karthigaifm.radioca.st/streams/64kbps

流类型是 Shoutcast 端口是 12000

我尝试使用此代码,但它不起作用。

<audio preload="none" autoplay="autoplay" controls="controls">
       <source
           src="https://karthigaifm.radioca.st/streams/64kbps;"
       />
</audio>

标签: htmlaudiointernet-radio

解决方案


src您需要删除字符串末尾的分号。像这样:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Audio Test</title>
  </head>
  <body>
    <audio preload="none" autoplay="autoplay" controls="controls" src="https://karthigaifm.radioca.st/streams/64kbps" />
  </body>
</html>

推荐阅读