Results 1 to 5 of 5
I need an application that I can set to start recording my line in at a certain time and save the file as an mp3 on my Hard Drive. In ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 08-09-2005 #1Just Joined!
- Join Date
- Aug 2005
- Posts
- 2
In need of App. to record incoming audio from my Line in
I need an application that I can set to start recording my line in at a certain time and save the file as an mp3 on my Hard Drive. In windows I use a program called Super Mp3 Recorder and it works great. Any ideas on any?
- 08-09-2005 #2Linux Engineer
- Join Date
- Jul 2003
- Location
- Uppsala, Sweden
- Posts
- 1,278
this is very simple, your system should already have the "rec" command. to find usage information type "rec -h" you can run this with a cron job no problem.
Proud to be a GNU/Gentoo Linux user!
- 08-09-2005 #3Just Joined!
- Join Date
- Aug 2005
- Posts
- 2
That might work except I dont think you can do something like start at 6 am and end at 10 am. Plus it needs to be something that runs every day on its own.
- 08-09-2005 #4
Perhaps audacity? I've never used it before, but it's for recording and editing sound.
Stumbling around the 'net:
www.cloudyuseful.com
- 08-09-2005 #5
I dunno how the rec command works, but you'd basically set up a cron job.
Cron will run a certain command at a specified time. So I dunno if there's a way to specify for how long you want it to run, but you could set up a cron job to start the recording at 6 AM.
Alternatively, you could use a script that executes the command and prints the PID to a file. That runs at 6 AM. You could then use another script to read the PID and execute kill on it, and run it at 10 AM.
So you'd have to look up how the command works, but this seems feasible.


Reply With Quote
