You are not logged in.
Hi community,
while i have no problem with lets say .ogg files, i would like the ability to converter such file type to *.mp3.
i tried converting in VLC and everytime i pick the format type to MP3 and set the destination, it always try to save/convert as *.ts instead of *.mp3
I tried using RhythmBox, since the file i am trying to convert is from a CD, but when i change the Preference -> Music Tab -> Preferred Format: MP3
it says that: "Install additional software to use this format."
i figure their inability to convert to mp3 might be the same....
I looked around the forum and it seem that there's a promising post about installing gstreamer...
unfortunately I already have the gstreamer installed (from good-bad-ugly and plugins)
and now im stumped. i dont know if there some sort of restricted-extra in Arch
any help would be apprieciated.
Then she sighed and squealed and kicked the air,
She sang: my bear so fair and off they went,
The bear, the bear and the maiden fair
Offline
for a single file
ffmpeg -i $name.ogg $name.mp3for multiple files
for name in *.ogg; do ffmpeg -i "$name" "$name.mp3"; done;out of curiosity: why do you want to convert from one lossy format to another?
Offline
ffmpeg is the fastest and most powerful choice for audio conversion, but if you prefer using a GUI, there's soundconverter
Offline
I looked around the forum and it seem that there's a promising post about installing gstreamer...
unfortunately I already have the gstreamer installed (from good-bad-ugly and plugins)
I don't use rhythmbox, so hopefully this helps.
Do you have the correct gstreamer stuff? rhythmbox uses the newer version of gsteamer, so you'll need gst-plugins-ugly and gst-plugins-bad. These are not the same as the gstreamer0.10 stuff.
Offline