Batch loop for wave to mp3 (using lame)
@echo off if NOT EXIST MP3 md MP3 if NOT EXIST WAV md WAV for %%f in (*.wav) do ( cls lame -b 96 -V 5 -B 128 -m j --vbr-new -q 5 "%%f" "MP3\%%f.mp3" move "%%f" WAV )
12364 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
@echo off if NOT EXIST MP3 md MP3 if NOT EXIST WAV md WAV for %%f in (*.wav) do ( cls lame -b 96 -V 5 -B 128 -m j --vbr-new -q 5 "%%f" "MP3\%%f.mp3" move "%%f" WAV )
sudo apt-get install lame
for x in [ `ls -1 *.mp3` ]; do lame --preset 32 $x new32-${x}; done