home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 April (Special) / Chip-Special_2003-04_Vypalujeme-cd-i-dvd.bin / soft / lame / lame-3.92.exe / misc / lame4dos.bat < prev    next >
DOS Batch File  |  2002-01-18  |  1KB  |  43 lines

  1. @echo off
  2. rem  ---------------------------------------------
  3. rem  PURPOSE:
  4. rem  - put this Batch-Command on your Desktop, 
  5. rem    so you can drag and drop wave files on it
  6. rem    and LAME will encode them to mp3 format.
  7. rem  - put this Batch-Command in a place mentioned
  8. rem    in your PATH environment, start the DOS-BOX
  9. rem    and change to a directory where your wave 
  10. rem    files are located. the following line will
  11. rem    encode all your wave files to mp3
  12. rem     "lame.bat *.wav"
  13. rem  ---------------------------------------------
  14. rem                         C2000  Robert Hegemann
  15. rem                         Robert.Hegemann@gmx.de
  16. rem  ---------------------------------------------
  17. rem  Changes to support long filenames using 4DOS
  18. rem  by Alexander Stumpf <dropdachalupa@gmx.net>
  19. rem  ---------------------------------------------
  20. rem  please set LAME and LAMEOPTS
  21. rem  LAME - where the executeable is
  22. rem  OPTS - options you like LAME to use
  23.  
  24.         set LAME=c:\progra~1\sound&~1\lame\lame.exe
  25.         set OPTS=-h --lowpass-width 2 --lowpass 20.5 -b 112 --abr 180
  26.  
  27. rem  ---------------------------------------------
  28.  
  29.     set thecmd=%LAME% %OPTS%
  30.         for %%f in (%&) do (%thecmd% %@sfn[%%f]^(ren %@sfn[%%f].mp3 "%@lfn[%%f].mp_">NUL))
  31.         ren *.mp3.mp_ *.new.mp3 >& NUL
  32.         ren *.wav.mp_ *.mp3 >& NUL
  33.         goto endmark
  34. :errormark
  35.     echo.
  36.     echo.
  37.     echo ERROR processing %1
  38.     echo. 
  39. :endmark
  40. rem
  41. rem    finished
  42. rem
  43.