1@echo off 2rem --------------------------------------------- 3rem PURPOSE: 4rem - put this Batch-Command on your Desktop, 5rem so you can drag and drop wave files on it 6rem and LAME will encode them to mp3 format. 7rem - put this Batch-Command in a place mentioned 8rem in your PATH environment, start the DOS-BOX 9rem and change to a directory where your wave 10rem files are located. the following line will 11rem encode all your wave files to mp3 12rem "lame.bat *.wav" 13rem --------------------------------------------- 14rem C2000 Robert Hegemann 15rem --------------------------------------------- 16rem please set LAME and LAMEOPTS 17rem LAME - where the executeable is 18rem OPTS - options you like LAME to use 19 20 set LAME=lame.exe 21 set OPTS=--preset cd 22 23rem --------------------------------------------- 24 25 set thecmd=%LAME% %OPTS% 26 lfnfor on 27:processArgs 28 if "%1"=="" goto endmark 29 for %%f in (%1) do %thecmd% "%%f" 30 if errorlevel 1 goto errormark 31 shift 32 goto processArgs 33:errormark 34 echo. 35 echo. 36 echo ERROR processing %1 37 echo. 38:endmark 39rem 40rem finished 41rem 42