| View previous topic :: View next topic |
| Author |
Message |
tunevibez
Joined: 21 Feb 2010 Posts: 9
|
Posted: Wed Apr 14, 2010 10:23 pm Post subject: Running Auto DJ on our server? |
|
|
We have a server that we use the broadcast radio a few hours a week. We would like to go 24/7 is there some kind of auto DJ code that we can install onto the server and leave it to broadcast 24/7?
I have searched Google and can't find anything!? Maybe I'm not searching right. hmm. :oops: |
|
| Back to top |
|
 |
karlH Code Warrior

Joined: 13 Jun 2005 Posts: 5476 Location: UK
|
Posted: Thu Apr 15, 2010 12:04 am Post subject: |
|
|
This is usually achieved by running any source client that provides content on a fallback mountpoint.
karl. |
|
| Back to top |
|
 |
jcr Modérateur français

Joined: 14 Apr 2006 Posts: 544 Location: France, Auvergne
|
Posted: Thu Apr 15, 2010 12:07 am Post subject: |
|
|
Hi,
You can used whatever source client able to manage a playlist, such as ices, Muse, Darkice, mpd, depending on your server orperating system.
You can mount this robot player on a fallback for your live mount. Source clients section of this forum would be the best place for discussing this issue. _________________ Epsilon Friends Radio Icecast Radio on CentovaCast admin panel. Icecast hosting |
|
| Back to top |
|
 |
bmn
Joined: 03 Aug 2008 Posts: 12
|
Posted: Thu Apr 15, 2010 7:15 pm Post subject: |
|
|
As has been said, there's a number of suitable source clients that can do the job. Personally I recommend Ices (Ices0 for MP3, Ices2 for Ogg) as it allows you to encode all your music beforehand to stop the server having to do it on the fly.
Using Ices as an example, you'd put all your pre-encoded tracks into a directory, then run something along the lines of
| Code: |
| # find /path/to/dir -name '*.ogg' > playlist.txt |
to create your playlist. Then you'd set Ices to use that playlist and have it mount at, for example, /24-7.ogg.
Say you have your live show on /radio.ogg. You'd create a mountpoint (if there isn't one already) in your Icecast config, and set the fallback-mount setting to /24-7.ogg. The fallback-override setting should be set to 1, which will send your listeners back to the live show as soon as it starts.
Then you'd point your listeners at /radio.ogg and basically ignore /24-7.ogg. |
|
| Back to top |
|
 |
|