-1

I've been digging around for ages but not getting very far so any links or tips would be massively appreciated.

I want to create a central "radio station" in my home to stream one playlist to any computers pointing their browser to the ip within my internal network.

I have an old mini slave mac mini running ubuntu and was originally thinking I could get php and apache to handle this but then quickly realised that of course, php will serve out streaming independently per connection ie no radio station.

Are there any servers already built for this sort of behaviour?

is shoutcast one of the only versions

Thanks, John

John
  • 927

1 Answers1

3

Well you can look at doing this with IP Multicast, and something like VLC. Setup your playlist in VLC, and then using the streaming wizard tell it to stream to network using UDP multicast. Giving it a class-d address (something like 239.1.2.3 should be fine). Stream it using RTP. then any RTP player should be able to listen to the stream. and since it is multicast there will always only be 1 copy of the stream on your lan, and everybody will have the same version.

Doon
  • 1,451