I just realized, that maybe I should keep it more simple: When the radio-host starts voice-tracking, all the events/sound-files he need, is already available to him, because the log was created the day before. Therefore I only need to sync the /var/snd folder before the radio-host starts voice-tracking. After that I just need to send the voice-tracks from the client to the server. The script below seems to do this nicely.
Thanks for all the help! Kind regards, Morten #!/bin/sh #sync content from server to client rsync -avz --delete -e ssh [email protected]:/var/snd /var while true ; do #send new files (voicetracks) to server rsync -avz -e ssh /var/snd [email protected]:/var/ sleep 5 done 2012/8/1 Robert Jeffares <[email protected]>: > On Wed, 2012-08-01 at 08:03 -0400, Rob Landry wrote: >> It took a while to get this working reliably; the problem is not as >> simple >> as it looks at first glance. > > I have a similar setup with a central server and two remotes running > rivendell. I export CUTS and CARTS during a window in which no uploads > are scheduled and rsync the carts that apply to each remote. > > I still have occasional clunky playout when too many things are > happening on the DB at the same time, but this may have been a RML LC > function on the incorrect port, because things settled down when I > changed to the no reply option. > > Robert > > When the network fails the remotes still function, because they can live > without updates. > > This application wants voice tracks recorded at a remote to be brought > back in to the server. AFAIK The remotes are voice track only. > > Robert > > _______________________________________________ > Rivendell-dev mailing list > [email protected] > http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev _______________________________________________ Rivendell-dev mailing list [email protected] http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
