Streaming radio
-
I need to create a radio via stream, but I do not know how, because I do not think anything on the internet can give me a hint, could anyone help me?
-
@baltieri Don’t you just need a normal html5 audio tag?
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/audio
Notice the MediaStream link on that page too.
-
Look at webrtc, it’s natively built in to almost all modern browsers.
In your case you’d have to set up a server that acts as a central peer which clients can connect to
You’d then send a media stream containing the audio information you want to transmit or the radio show in this case.
Another option might be websockets