Hello!
For the past... 6 or so months I've been trying to accomplish one thing:
Streaming Internet Radio (using VLC as an encoder for MP4a-LATM) to my Samsung u740 phone using the RTSP protocol.
The reason for it is I like radio more then the 2 GB worth of songs I can put on my MicroSD card AND I didn't feel like paying my useless cell company an extra $7.00/month.
And I'm glad to say that I'm finally able to do it using VLC as the encoder and Darwin as the RTSP server. (yay!) But I have a small problem. The internet radio provider I'm using has multiple stations I like and the only way I know so far to broadcast to Darwin is by using a command like:
setup clubfmbroad output #transcode{acodec=mp4a-latm,ab=96,channels=2}:rtp{dst=127.0.0.1,port=1234,sdp=file://"C:\Program Files\Darwin Streaming Server\Movies\clubfm.sdp"}}
Which does a live boardcast of the radio station at 96Kbps/sec on my local adapter on port 1234. That being said, if I decide to play multiple broadcasts like:
setup clubfmbroad output #transcode{acodec=mp4a-latm,ab=96,channels=2}:rtp{dst=127.0.0.1,port=1234,sdp=file://"C:\Program Files\Darwin Streaming Server\Movies\clubfm.sdp"}}
setup top40fmbroad output #transcode{acodec=mp4a-latm,ab=96,channels=2}:rtp{dst=127.0.0.1,port=1234,sdp=file://"C:\Program Files\Darwin Streaming Server\Movies\top40fm.sdp"}}
I can't because they both need port 1234. Now I've tried incrementing the port by one for each broadcast with no luck.
Does anyone have any ideas as to how I could use multiple VLC broadcasts with Darwin?