Linux Convert M4p To Mp3

  1. How To Convert M4p Files
  2. Linux Convert M4p To Mp3 Converter

Convert M4P to MP3 online with 3 clicks If you need to convert M4P to MP3 and make it compatible with different devices, you’re in the right place. You don’t have to download nor install any additional software because this M4P converter is online, free, and easy to use. I have an iTunes Music Store account and I have several downloaded (m4p) files that I would like to be able to play under Linux. I have searched with Google and this forum for help, but I have not been able to find anything to help me out. Rhythmbox has become my mp3 player of choice.

Apr 6, 2014

How To Convert M4A to MP3 on Linux

There are many different formats out there for music and many different players out there, one of the most popular on Windows and MAC OSX is iTunes due to the iPod. The issue that we run into is being able to play the music you paid for on Linux without iTunes or another player. One such way to make the music universally play on anything is to convert it to MP3 format.

This post explains how to convert it using three different methods.

Converting Using FAAD and LAME

If not installed you will need to install faad and lame.

How To Convert M4p Files

Next let’s convert the m4a file to a wav file, then use lame to create the mp3.

Mp3Convert m4p to m4a

The -h option of lame requests the production of higher quality output and the -b option results in a bitrate of 192kbps for the resulting mp3

Convert with ffmpeg

Linux convert m4a to mp3

Install ffmpeg if it is not installed.

$sudo yum install soundconverter gstreamer-plugins-ugly

Open Soundconverter and click on Preferences.

Click on the format drop down and select MP3 (.mp3) and click close. Next click on the Add File button and browse to the m4a you want to convert and click open.

If there are more files you want to convert use the Add File button. If you are done then click on convert.

The conversion will show progress until completed.

And there you go! A few ways to convert m4a to MP3.

Related Posts

  1. You’ve got a goof in the ffmeg conversion line – that will convert it at 192 bits per seconds, not 192k. Change it to -ab 192k to get something with a bit of quality in it.

  2. It is much easier with VLC
    1. Open Media
    2. Open File
    3. Select your file
    4. Choose Convert from List close to Play button
    5. Select desired profile (probably Audio – MP3)
    6. Type desired file name
    7. Start

    • Maybe so, but personally I’m doing this conversion on a computer without a monitor or any sort of GUI, so the terminal commands are much easier for me.

  3. I use Avdshare Audio Converter to convert video to audio or converter between various audio formats like M4A, MP3, WAV, AAC, WMA, AIFF, DTS, Opus etc.

  4. I recommend Avdshare Audio Converter which can convert all M4A files to AIFF and convert AIFF to M4A at fastest conversion speed.

  5. Great article!

    Recently I stumbled upon “parallel” an amazing piece of software that allows us to perform “parallel” tasks. Reading a little its manual and researching through the Internet I came up with another solution for converting mp3 files.

    find . -type f -iname “*.m4a” | parallel -j8 ffmpeg -i {} -acodec mp3 -ac 2 -ab 192k {.}.mp3

    -j8 ……… 8 jobs at once
    {} ………. the original name
    {.}.mp3 ….. the modified name

Leave a Reply

Linux Convert M4p To Mp3 Converter

This site uses Akismet to reduce spam. Learn how your comment data is processed.