[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]

Re: Batch conversion WAV-MP3 (whoops)



find . -name "* *" | sed -e 's/ /\\ /g' -e 's/\(.*\).wav/lame
\1.wav \1.mp3/' | sh

Sorry...forgot to take out my testing for files that had spaces in them before I copied it into the email. That "* *" should be "*.wav", making it


find . -name "*.wav" | sed -e 's/ /\\ /g' -e 's/\(.*\).wav/lame
\1.wav \1.mp3/' | sh

Appologies.

-tim






[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]