Opensuse 13.2
Is there a audio converter that will let me convert my .ogg files into mp3 ?
thanks
Opensuse 13.2
Is there a audio converter that will let me convert my .ogg files into mp3 ?
thanks
There are a few but my favourite is pacpl from the packman repo at:
or use the universal ffmpeg
https://ffmpeg.org/ffmpeg.html#Audio-Options
I’d need to reread the documentation but a conversion is as simple as
ffmpeg -i input_file.ogg -acodec libmp3lame -b:a 320k out_file.mp3
will convert any ogg to cbr 320k mp3 (or you can do vbr)
for more options see
https://trac.ffmpeg.org/wiki/Encode/MP3
It can be done too with VLC