Another great tool to convert mp4 to mp3

It is ffmpeg. In Ubuntu 14.04, you can install ffmpeg as following:

$ sudo apt-get install ffmpeg libavcodec-extra-53

Then, you can convert your mp4 videos to mp3:

$ ffmpeg -i source.mp4 -b:a 320K -vn dest.mp3

For more information about ffmpeg, please follow its repository: https://github.com/FFmpeg/FFmpeg

Comments