Postby Ebbletart » 14 Dec 2011 03:47
Care to post your solution?
Sorry, thread necro.
Edit: I solved this myself for ripping to mp3's in Linux using ffmpeg. If you're on Ubuntu, just do:
sudo apt-get install ffmpeg libavcodec-extra-52
then:
ffmpeg -i video.webm -ab 320k -ar 44100 song_title.mp3
You can substitute "320k" with whatever constant bit rate you want and you can change .mp3 to .ogg, although that appears to create an ogg video file rather than an ogg audio file.