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 OFF
TITLE Recorder Loop
COLOR 0A
:LOOP
ECHO.
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> NUL
taskkill /FI "WindowTitle eq Recorder" 1> NUL
ECHO Recording has been stoped on %date:~-4,4%-%date:~-7,2%-%date:~-0,2% %time:~0,2%;%time:~3,2%;%time:~6,2%
GOTO LOOP
The 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.
This post has been edited by Outbreaker: 15 October 2011 - 02:24 PM