Extract the MP3 Audio Portion of a Video

FAIL (the browser should render some flash content, not this).

How to use ffmpeg to separate an mp3 audio track from a video.

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

Thank you so much.. I was

Premkumar Masilamani's picture

Thank you so much.. I was looking for a tool in linux to do this stuff. I am pretty happy to be able to do it in command line :)

Worked for me

Anonymous's picture

Very useful, much appreciated. MP4 to MP3, sweet as a nut.

Idiots are fun to watch...

Anonymous's picture

Are you guys morons? He didn't say "extract", he said "separate", as if to bit-bucket the video and save the audio...in other words, transcoding...which is what you know-it-alls accuse him of doing...

That's like saying "You're not drinking, you're imbibing!".

Get a thesaurus, sheesh.

Read the title: "Extract the

Anonymous's picture

Read the title: "Extract the MP3 Audio Portion of a Video" moron ... sheesh.

In any case it is very stupid to decode something encoded with lossy codec and encode it again with the same lossy codec, also compare how much CPU cycles takes unnecessary transcoding
vs. simple extracting on for example 2 hour video.

You showed us transcoding,

Anonymous's picture

You showed us transcoding, not extracting. Proper way to extract audio (without transcoding and therefore without further loss of quality) is:

ffmpeg -i bd.flv -vn -acodec copy bd.mp3

Yes but be prepared

Mitch Frazier's picture

That probably is a better solution except when it doesn't work. I have some videos which produce unplayable mp3 files when using "-acodec copy" whereas if I don't specify the argument they will play.

Mitch Frazier is an Associate Editor for Linux Journal.

Incompatible container

Anonymous's picture

That happens because ffmpeg blindly tries to copy audio stream into incompatible container, here's an example of copying vorbis audio stream from ogg container into mp3 container (and mp3 cannot hold vorbis):

ffmpeg -i in.ogg -acodec copy out.mp3

ffmpeg will do this without complaints, but mplayer cannot play this:

mplayer out.mp3

gives error. On the other hand matroska container is able to hold vorbis audio:

ffmpeg -i in.ogg -acodec copy out.mkv

and mplayer plays this with no error. So, "-acodec copy" should be used only if destination container can hold source codec.

White Paper
Fabric-Based Computing Enables Optimized Hyperscale Data Centers

Today’s modular x86 servers are compute-centric, designed as a least common denominator to support a wide range of IT workloads. Those generic, virtualized IT workloads have much different resource optimization requirements than hyperscale and cloud applications. They have resulted in a “one size fits all” enterprise IT architecture that is not optimized for a specific set of IT workloads, and especially not emerging hyperscale workloads, such as web applications, big data, and object storage. In this report, you will learn how shifting the focus from traditional compute-centric IT architectures to an innovative disaggregated fabric-based architecture can optimize and scale your data center.

Learn More

Sponsored by AMD

White Paper
Red Hat White Paper: Using an Open Source Framework to Catch the Bad Guy

Built-in forensics, incident response, and security with Red Hat Enterprise Linux 6

Every security policy provides guidance and requirements for ensuring adequate protection of information and data, as well as high-level technical and administrative security requirements for a system in a given environment. Traditionally, providing security for a system focuses on the confidentiality of the information on it. However, protecting the data integrity and system and data availability is just as important. For example, when processing United States intelligence information, there are three attributes that require protection: confidentiality, integrity, and availability.

Learn more about catching the bad guy in this free white paper.

Learn More

Sponsored by DLT Solutions