southernfm
Active member
Just FYI, with how we do music synchronisation at our station with Radio BOSS, we have a master computer which houses all the music files we want. The master computer is where we add any music or update the databases etc.
There are robocopy scripts which run continuously on the master computer. An example script is this:
robocopy "C:\Music" "\\STUDIOBLUE\Music" /E /TS /FP /XO /NP /PURGE /LOG:"C:\Scripts\Logs\STUDIOBLUE-Music.log" /Z /MON:1 /MOT:1 /R:10 /W:30 /MT:64
With the /MON and /MOT flags, it scans the C:\Music folder on the master computer every 1 minute, for any 1 file change. If detected, it does a push to the studios (the blue studio in the example above).
All three computers which have Radio BOSS in our station use "C:\RadioBOSS" as their primary folder which houses everything. This folder is actually a symbolic link which points 'C:\RadioBOSS' to the applicable radio boss folder on each PC (e.g. C:\Users\Radio\AppData\Roaming\djsoft.net\RadioBOSS_1584329963).
We then always reference "C:\RadioBOSS" and playlists, databases, music etc. all works properly after the synchronisation is completed. This negates the need for network hosted databases.
The above script only does music, but we have different scripts which sync databases, music, playlists, and the ad scheduler.
It is a bit of a complex setup which I custom made to suit our needs, but the reason we did it that way is because local playback is always preferred for us. Network issues can arise and affect playback with network hosted files.
Just thought I'd share our set up for anyone facing a similar issue of trying to keep multiple computers linked with RadioBOSS.
There are robocopy scripts which run continuously on the master computer. An example script is this:
robocopy "C:\Music" "\\STUDIOBLUE\Music" /E /TS /FP /XO /NP /PURGE /LOG:"C:\Scripts\Logs\STUDIOBLUE-Music.log" /Z /MON:1 /MOT:1 /R:10 /W:30 /MT:64
With the /MON and /MOT flags, it scans the C:\Music folder on the master computer every 1 minute, for any 1 file change. If detected, it does a push to the studios (the blue studio in the example above).
All three computers which have Radio BOSS in our station use "C:\RadioBOSS" as their primary folder which houses everything. This folder is actually a symbolic link which points 'C:\RadioBOSS' to the applicable radio boss folder on each PC (e.g. C:\Users\Radio\AppData\Roaming\djsoft.net\RadioBOSS_1584329963).
We then always reference "C:\RadioBOSS" and playlists, databases, music etc. all works properly after the synchronisation is completed. This negates the need for network hosted databases.
The above script only does music, but we have different scripts which sync databases, music, playlists, and the ad scheduler.
It is a bit of a complex setup which I custom made to suit our needs, but the reason we did it that way is because local playback is always preferred for us. Network issues can arise and affect playback with network hosted files.
Just thought I'd share our set up for anyone facing a similar issue of trying to keep multiple computers linked with RadioBOSS.