Outbreaker Posted October 10, 2011 Posted October 10, 2011 (edited) HI I'm searched now for 3 days in google to find a free sound recorder that would start recording if Windows starts and would generate each hour(s) or every day a new MP3 file.Does someone know a recording program like this? I would need this to record a device that is connected 24/24 to the Computer Sound Card Line-in input. Edited October 10, 2011 by Outbreaker
allen2 Posted October 10, 2011 Posted October 10, 2011 (edited) A simple google search retrieved how to use soundrec on vista and higher and mp3 sound recorder. Edited October 10, 2011 by allen2
Outbreaker Posted October 10, 2011 Author Posted October 10, 2011 But it will not do every 6 hour or every day a new MP3 file with the date and time in the file name? I know that this could be done with a VBScript but i do not know how to script this.
allen2 Posted October 11, 2011 Posted October 11, 2011 You just need to create a scheduled task that will do the job and of course a little of scripting (batch/vbs...) is needed but nothing needing a lot of time if you want to learn.
Outbreaker Posted October 11, 2011 Author Posted October 11, 2011 (edited) I did also notice that there is no documentation what the Silent mode commands are.For creating a new file i will use the cmd "ping 21600" command. Edited October 11, 2011 by Outbreaker
e-t-c Posted October 12, 2011 Posted October 12, 2011 (edited) JetAudio (Basic FREE) Multi-Mediaplayer has an Alarm/Timer & Recording Option http://www.jetaudio.com/products/jetaudio/features_05.html... or special recording Software ...Aktiv MP3 Recorder (Freeware) http://www.goforsharing.com/index.php/home-mainmenu-1/aktiv-mp3-recorder-mainmenu-130 Edited October 12, 2011 by e-t-c
Outbreaker Posted October 12, 2011 Author Posted October 12, 2011 @e-t-cI did found this one also in google but the Schedule can only be used to set a time to start a recording but not to the time to stop a recording. So it's not possible to use this program to set it up to make automatically every 6 houers a new mp3 file.
e-t-c Posted October 14, 2011 Posted October 14, 2011 Hi, i found WavRecorder http://www.waverec.de/Main.htm#Screenshot (hm, only in german?)or THE MP3 VCR http://www.mp3vcr.com/tutorial2.htmland also AudioGrabber http://www.audiograbber.de/ag160.phtml (only in german?)having all a Time Recording Function - also the option to use with Windows Scheduled Tasks - maybe one of these?good luck
Outbreaker Posted October 15, 2011 Author Posted October 15, 2011 (edited) "THE MP3 VCR" is an Internet Radio Recorder.and"AudioGrabber" is a CD Recorder.and"WavRecorder" wout start Recording if the program has started. Edited October 15, 2011 by Outbreaker
e-t-c Posted October 15, 2011 Posted October 15, 2011 hmm, "AudioGrabber" is a Line-In Recorder too - i found this in the AudioGrabber Help File ;-Line in sampling.This function is found under the file menu.The "line in" sampling function is used to record from audio sources through the soundcard either internally, ie. from the cd rom, or even a music file on the hard disc, or from an outside audio source such as a phonograph or radio, through the "line in" jack on the soundcard. You can plug whichever audio source you desire into your soundcard and let Audiograbber record from it. For best results, always try to send as good a signal to the soundcard as possible. To record from vinyl it is best to connect the turntable to the stereo and then the stereo to the sound card. Do not connect the turntable directly to the soundcard, as the signal from the turntable is too weak.The "line in" function has three different recording modes: "manual", "track splitting", and "time scheduled". These different modes are described in more detail later on in text.... bla ...Time scheduled recording:This mode is useful for recording from radio when you are away from your PC.It works like a VCR timer, but for radio (or for that matter whatever audio source is connected to your soundcard). Times can be set flexible. When the program is in "time scheduled" mode it will display the current date and time below the "Close" button. How this is shown is dependent of your computers regional settings (in the Control Panel). Use this same format when entering information in the "Date" and "Time" field (see below). "Date" field: Enter a date here (using the proper format) to record only on that specific day. You can leave the field empty if you want, whereby Audiograbber will then record at the same specified time every day. It is also possible to specify a weekday like Monday or Tuesday etc, (in English) whereby Audiograbber will record once a week (on that day) during the specified time."Time" field: Specify the start time (time of the day) for the recording in this field. Remember to use the proper format."Length" field:Specify the duration of the recording here using the following format: hh:mm:ss where "hh" are hours, "mm" are minutes, and "ss" are seconds (for example, One hour two minutes and three seconds should be written as following: 01:02:03).
Outbreaker Posted October 15, 2011 Author Posted October 15, 2011 (edited) Yes but AudioGrabber is if you have a CD player connected to the Line-in of your computer and it will split every track into a single mp3 file.The only way i found to do this is using the FFmpeg http://ffmpeg.zeranoe.com/builds/And run FFmpeg with this batch code:@ECHO OFFTITLE Recorder LoopCOLOR 0A:LOOPECHO.ECHO New recording has been started on %date:~-4,4%-%date:~-7,2%-%date:~-0,2% %time:~0,2%;%time:~3,2%;%time:~6,2%START "Recording" /MIN "bin\ffmpeg.exe" -f dshow -i audio="Digital Audio Interface (USB Au" -ar 44100 -ab 128 -ac 2 "Recordings\%date:~-4,4%-%date:~-7,2%-%date:~-0,2% %time:~0,2%;%time:~3,2%;%time:~6,2%.aac"ping -n 21600 localhost 1> NULtaskkill /FI "WindowTitle eq Recorder" 1> NULECHO Recording has been stoped on %date:~-4,4%-%date:~-7,2%-%date:~-0,2% %time:~0,2%;%time:~3,2%;%time:~6,2%GOTO LOOPThe only problem is that i have now 2 CMD windows open in the taskbar. Perhaps a user in this forum can code something better in another program language that displays only one ICON at the System Tray. Edited October 15, 2011 by Outbreaker
allen2 Posted October 16, 2011 Posted October 16, 2011 You just need to create another login/password on your windows install and then create a scheduled task to run your batch with the newly created used. Of course you need to setup properly the newly created user so it can write in the right folder and it can run the batch.
Outbreaker Posted October 16, 2011 Author Posted October 16, 2011 (edited) Yes but to run an extra Windows account for only one Batch file mmm then i think it can live with the 2 extra taskbar windows. .) Edited October 16, 2011 by Outbreaker
allen2 Posted October 16, 2011 Posted October 16, 2011 Of course you could use autoit and the run the batch hidden or convert the entire batch to hide it.Also if you really want to have the entire 24/7 without missing some millisecond, you should start the next recording before killing the previous one.
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now