Skip to content Skip to sidebar Skip to footer

Is There A Good Radio-like Audio Streaming Solution For Node.js?

I'm looking for something to stream audio like radio (playing continuously and clients can join in the middle of a song) with node.js. Is there any node.js module (which I couldn't

Solution 1:

Yes, this is entirely possible. I am hosting internet radio on Node.js at the moment.

All you have to do is take the raw stream data from the encoder and send it via HTTP to any connected clients. The clients are good about synching up with the stream, so you don't have to worry about aligning to frames or anything.

Post a Comment for "Is There A Good Radio-like Audio Streaming Solution For Node.js?"