Relay mount question.
-
- Posts: 78
- Joined: Tue Jan 15, 2002 4:41 am
- Location: Vancouver
- Contact:
Relay mount question.
I want to have a relay mount (listen.mp3) that is the main mount that all listeners will hook up to. I want this relay to hook up to a live mount (live.mp3) and then when live is not used fall back to replaying the auto mount (auto.mp3) which is the auto dj mount. I also want this mount to be listed publicly and hide the other two.
For the most part I had it working but a few odd things popped up. The replay mount would show current users but only ones that connected through the Steamcast web page at port 8000, any player connecting to a m3u file link with this in it http://play.blunt.audio/listen.mp3 would not be counted as a listener. Also was not able to get the mount listed in the directory.
This is my cfg.
SourceMount1=/live.mp3
SourceBackup1=/auto.mp3
SourceUser1=username
SourcePass1=pass
SourceUserMax1=100
SourcePublic1=no
SourceMount2=/auto.mp3
SourceUser2=username
SourcePass2=pass
SourceUserMax2=100
SourcePublic2=no
SourceMount3=/listen.mp3
SourceRelay1=play.blunt.audio:8000/live.mp3
SourcePublicRelays=yes
For the most part I had it working but a few odd things popped up. The replay mount would show current users but only ones that connected through the Steamcast web page at port 8000, any player connecting to a m3u file link with this in it http://play.blunt.audio/listen.mp3 would not be counted as a listener. Also was not able to get the mount listed in the directory.
This is my cfg.
SourceMount1=/live.mp3
SourceBackup1=/auto.mp3
SourceUser1=username
SourcePass1=pass
SourceUserMax1=100
SourcePublic1=no
SourceMount2=/auto.mp3
SourceUser2=username
SourcePass2=pass
SourceUserMax2=100
SourcePublic2=no
SourceMount3=/listen.mp3
SourceRelay1=play.blunt.audio:8000/live.mp3
SourcePublicRelays=yes
- Jay
- Will work for food (Administrator)
- Posts: 3025
- Joined: Mon Jan 14, 2002 12:48 am
- Location: Next Door
- Contact:
Re: Relay mount question.
Yes, that is due to the fact that you are trying to ask Steamcast to relay /live.mp3 on /live.mp3 and creating an infinite loop.
Change this line
Change this line
to this...
SourceMount3=/listen.mp3
SourceRelay1=play.blunt.audio:8000/live.mp3
SourcePublicRelays=yes
...
SourceMount3=/listen.mp3
SourceRelay3=play.blunt.audio:8000/live.mp3
SourcePublicRelays=yes
- Jay
-
- Posts: 78
- Joined: Tue Jan 15, 2002 4:41 am
- Location: Vancouver
- Contact:
Re: Relay mount question.
Nice that worked Now just have to test incoming live streams and fall back.Jay wrote:Yes, that is due to the fact that you are trying to ask Steamcast to relay /live.mp3 on /live.mp3 and creating an infinite loop.
Change this lineto this...
SourceMount3=/listen.mp3
SourceRelay1=play.blunt.audio:8000/live.mp3
SourcePublicRelays=yes
...
SourceMount3=/listen.mp3
SourceRelay3=play.blunt.audio:8000/live.mp3
SourcePublicRelays=yes