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 [...]
You can of course specify bitrate etc. with the appropriate flags to sox. Refer to the manpage for instructions.
Cheers!
#!/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!