Topic: mp3/wma-to-ogg
I've been playing around with this lately and have created this:
#!/bin/sh
find -iname '*.mp3' -exec ffmpeg -i {} -acodec vorbis -ab 128k {}.ogg \;
rename 's/\.mp3//' *\.mp3\.ogg
rm *.mp3#!/bin/sh
find -iname '*.wma' -exec ffmpeg -i {} -acodec vorbis -ab 128k {}.ogg \;
rename 's/\.wma//' *\.wma\.ogg
rm *.wmamake them executable and run them in the terminal, they will convert all of the mp3s of wmas into oggs
***********************************
***********************************
***********************************
THIS WILL DELETE THE ORIGIONAL WMAS OR MP3S
***********************************
***********************************
***********************************
have fun!
Last edited by crunchy (2011-05-15 01:10:06)
registered #! user: #6769
Whenever someone calls me a computer 'nerd' or a 'Unix-based-system'
all I can think is: You just wait. In a couple of years. I'll be your IT. Then where will you be!