Chris Weaver wrote: > <SNIP> > I'm stuck on application at the moment. Our > legal logger - this is simply a application that records an mp3 file from a > live input creating a new file every 24 hours. Currently we use > http://www.cooolsoft.com/mp3rec.htm but searching the linux-audio pages I'm > unable to find a similar application. > > Hi Chris,
I'm unable to find a specific application for what you have asked for, however, some variation of: $ while true; do arecord -d86400 | lame - PunkRockRadio-`date +%d-%b-%Y`.mp3 ; done This will create recordings of 24 hours long like: PunkRockRadio-20-Aug-2008.mp3 PunkRockRadio-21-Aug-2008.mp3 PunkRockRadio-22-Aug-2008.mp3 So if this is scheduled to run at midnight, it will do it's job. Obviously you'd want a better script than this, but just as sound idea. This could then be served via samba (network drive), and/or served as a http directory listing. Hope this is some pointer in the right direction :) Kind Regards, Dave Walker -- [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk https://wiki.ubuntu.com/UKTeam/
