How to convert mp4 file on Ubuntu Linux to -> mp3 ?

Sometimes we need to convert mp4 files into mp3 files. But converting bunch of files in the entire folder is tedious job. Here is the easy solution to convert all the mp4 files to mp3 file.

First install pacpl package:

sudo apt-get install pacpl

This is the converter package written in Perl language.

Run following command in the folder where mp4 files are resides.

pacpl --to mp3 -v -r -bitrate 320 *

Happy listening music 😉

Comments