Can someone please advise me a if there is a program available in the Linux suite that has the option for recording from the sound card on a timer within the program and then auto saves the audio file for the next scheduled event.
Printable View
Can someone please advise me a if there is a program available in the Linux suite that has the option for recording from the sound card on a timer within the program and then auto saves the audio file for the next scheduled event.
why dont you write a script:
This program will record from your soundcardCode:arecord
If you want, you could pipe the output from arecord into lame and get an mp3 as output (google arecord pipe lame)Code:lame
Makes the script wait a specified time before executing the next command.Code:sleep
Alternativly, if you want to say record every day at 3pm, maybe look into cron?
Good luck.