I have some songs which are in mp4 format and I want to convert them into mp3 format.
I am new to Ubuntu/Linux. So please explain the step by step process or give any software which can do the above job.
I have some songs which are in mp4 format and I want to convert them into mp3 format.
I am new to Ubuntu/Linux. So please explain the step by step process or give any software which can do the above job.
I would recommend Sound Converter. It is extremely simple to use for what you want. You can find it in the Software Center, or install it from the terminal:
sudo apt-get install soundconverter
Ubuntu Repo: soundconverter
Apt Link: Install soundconverter
All you need to do is open it up, change your preferences (Edit -> Preferences) then click the "Add File" or "Add Folder" buttons to add the music to be converted, and click Convert. It doesn't get much simpler.
I have extracted the audio from mp4 and m4a files and converted them to mp3 format many times; it is very useful when a lot of podcasts come in m4a or mp4 format.
I found that the most reliable way to allow ffmpeg to use proprietary formats was to build it from source, although you can see if it works with jfreak53's method if you do not wish to build from source. (After uninstalling any ffmpeg files, I compiled ffmpeg from source using this guide)
In addition, the following script, which I have modified, (credit to the original creator), preserves the original name of the file in the newly converted file, which may be useful for you. Save it in a text editor and make it executable with chmod +x yourscriptname.
#!/bin/bash
for f in *.mp4
do
name=`echo "$f" | sed -e "s/.mp4$//g"`
ffmpeg -i "$f" -vn -ar 44100 -ac 2 -ab 192k -f mp3 "$name.mp3"
done
In addition, following a suggestion by evilsoup, you could also use the following one-liner. It 'converts every MP4 in the current directory to an MP3', preserves the original name of the file, and 'to use it for an flv or avi or whatever, simply change both instances of mp4':
for f in *.mp4; do ffmpeg -i "$f" -vn -c:a libmp3lame -ar 44100 -ac 2 -ab 192k "${f/%mp4/mp3}"; done
If you mean export the audio from the video MP4 file then use ffmpeg, I do this all the time from FLV files. Firstly install ffmpeg:
sudo apt-get install ffmpeg libavcodec-unstripped-52
The run:
ffmpeg -i video.mp4 -f mp3 -ab 192000 -vn music.mp3
It might say that your missing some codecs for MP4, in that case just run:
aptitude search codecname
And find it to install.
By the way, you can get more information about this by searching the web. Here are a few useful resources, found in this way:
Here's how to extract the audio from an MP4 video losslessly (keeping the original sound intact without reducing quality)
ffmpeg -i video.mp4 -vn -acodec copy audio.m4a
Granted, this results in an M4A audio file not MP3. But most software and cell phones now can play M4A out of the box.
FF Multi Converter is a simple graphical application which enables you to convert audio, video, image and document files between all popular formats, using and combining other programs. It uses ffmpeg for audio/video files, unoconv for document files and PythonMagick library for image file conversions.
The goal of FF Multi Converter is to gather all multimedia types in one application and provide conversions for them easily through a user-friendly interface. Extra options will be gradually added.
The application is written in python and PyQt.
All code is licensed under the GNU General Public License.
FF Multi Converter is free software - software that respects your freedom.
Features
Conversions for several file formats.
Very easy to use interface.
Access to common conversion options.
Options for saving and naming files.
Recursive conversions.
Installing on Ubuntu and Debian
Stable release
To add the ppa to your system resources and install ffmulticonverter, open a terminal and enter:
sudo add-apt-repository ppa:ffmulticonverter/stable
sudo apt-get update
sudo apt-get install ffmulticonverter
Development release
Just change ppa name to ppa:ffmulticonverter/unstable and type the same commands as above.
I would recommend Winff a GUI for ffmpeg for all video/audio conversions.
All you do is add the video, choose your output (audio, mp3) in this case, choose the folder the converted file is to be saved in and click convert.
sudo apt-get install winff
Whether you mean video or audio, Audacity works great (it can extract audio from any supported video file). I use it now. I used to use ffmpeg, but it was a little complicated and some formats weren't available/didn't work.
Combining things here, but this keeps file names and dumps a original sound copy to m4a:
for f in *.mp4; do name=`echo "$f" | sed -e "s/.mp4$//g"` && ffmpeg -i "$f" -vn -acodec copy "$name.m4a"; done