Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror

Comment Re:OGG/Vorbis support (Score 1) 399

I don't want to spend my time writing a shell script to convert my mp3s to Vorbis [...]

#!/bin/bash
for I in *.mp3; do sox $I $(echo $I | tr -s .mp3 .)ogg; done


You can of course specify bitrate etc. with the appropriate flags to sox. Refer to the manpage for instructions.

Cheers!

Slashdot Top Deals

In any problem, if you find yourself doing an infinite amount of work, the answer may be obtained by inspection.

Working...