Have you looked at campware? It provides open source software solutions to run radio stations:<br><br><a href="http://www.campware.org/">http://www.campware.org/</a><br><br>Not sure if it supports the sound backup you are wanting.
<br><br>A simple bash script calling arecord to save date and timestamped files for a fixed duration should be able to do the job though (as long as you are using alsa!).<br><br>something like:<br><br>#!/bin/bash<br>while [ 1 ]
<br>do<br>&nbsp;&nbsp; arecord -d 86400 -r 44100 -t wav soundbackup`date &quot;+%H%m%d%y&quot;`.wav<br>done<br><br>(haven&#39;t tested this so it may not work, but you get the idea!)<br><br>James<br><br><div><span class="gmail_quote">
On 12/20/06, <b class="gmail_sendername">Dan Easley</b> &lt;<a href="mailto:daneasley@gmail.com">daneasley@gmail.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
please excuse the random spewing of ideas:<br><br>i work at a radio station, and it would be awesome if i could record<br>insanely long periods of time (for quality control).<br><br>i&#39;d love to be able to record 24/7, with new audio replacing old.&nbsp;&nbsp;a
<br>400gig drive could hold two weeks of 16-bit 44.kHz stereo audio.&nbsp;&nbsp;how<br>long could it survive constant writing?<br><br>alternatively, are there any one-line commands that will simply record<br>continuously to a series of files until a partition runs out of space?
<br><br>--<br><a href="mailto:daneasley@gmail.com">daneasley@gmail.com</a><br><a href="mailto:dan@towndowner.com">dan@towndowner.com</a> <a href="mailto:dan@burntpossum.com">dan@burntpossum.com</a><br><a href="http://towndowner.com">
http://towndowner.com</a> <a href="http://burntpossum.com">http://burntpossum.com</a><br></blockquote></div><br>