Results 1 to 2 of 2
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 ...
- 12-08-2005 #1Just Joined!
- Join Date
- Dec 2005
- Posts
- 1
Sound Card Timer Record
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.
- 12-13-2005 #2Linux Newbie
- Join Date
- Nov 2004
- Posts
- 239
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.


Reply With Quote