简体   繁体   中英

laying online stream in HTML webpage

I want to play this audio live stream in html browser http://uk3.internet-radio.com:8405/live

I tried several players with no hope any player than can do that? or plugin

You can try something like this:

<html>
    <head>
      <meta name="viewport" content="width=device-width">
    </head>
    <body>
      <video controls="" autoplay="" name="media">
         <source src="http://uk3.internet-radio.com:8405/live" type="audio/aac">
      </video>
    </body>
</html>

To try, save it as.html file and run.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM