Language
English
Category
Search

How to convert an MP4 file to MP3 on Linux using FFmpeg

In this article, you'll learn how to use FFmpeg in the terminal to convert multiple MP4 files to MP3 at once, with simple and efficient commands

Index

How to convert an MP4 file to MP3 on Linux using FFmpeg
At Terminal By Rudi Drusian Lange
Published on
Last updated

Introduction

FFmpeg is an open-source tool widely used for processing audio, video, and other multimedia files. It allows for conversion between different formats, basic editing (such as cutting, joining, or resizing videos), applying filters, and even streaming content.

Main Features:

  • Conversion of audio and video formats.
  • Extraction of audio from videos.
  • Resizing and quality adjustment.
  • Cutting, concatenation, and merging of files.
  • Support for streaming and screen capturing.

Converting MP4 to MP3

To convert an MP4 file to MP3 on Linux, you can use ffmpeg via the command line:

$ bash

ffmpeg -i input.mp4 -q:a 0 -map a output.mp3
  • Replace input.mp4 with the name of your MP4 file.
  • Replace output.mp3 with the desired name for the resulting MP3 file.

What the command does:

  1. Reads the video file input.mp4.
  2. Extracts only the audio from the video, ignoring the video and other streams (-map a).
  3. Converts the audio to the MP3 format with the best possible quality (-q:a 0).
  4. Saves the result in the file output.mp3.

Converting multiple files

To convert multiple MP4 files to MP3 in bulk, preserving the original names and only changing the extension from .mp4 to .mp3, run the following script in the terminal within the folder where the files are located:

$ bash

for file in *.mp4; do ffmpeg -i "$file" -q:a 0 -map a "${file%.*}.mp3"; done

Explanation of the command:

  1. for file in *.mp4:
    • Iterates over all files in the current directory that have the .mp4 extension.
    • At each iteration, the name of an MP4 file is stored in the variable file.
  2. ffmpeg -i "$file" -q:a 0 -map a
    • Runs the ffmpeg command to process the MP4 file stored in the variable $file.
    • The options -q:a 0 and -map a ensure that the audio is extracted with the best possible quality (-q:a 0) and that only the audio stream is included in the output (-map a).
  3. "${file%.*}.mp3"
    • ${file%.*} removes the .mp4 extension from the original file name (for example, video.mp4 becomes video).
    • .mp3 is added at the end, resulting in a file with the same name but with the .mp3 extension.
  4. done
    • Ends the for loop, ensuring the command is executed for all .mp4 files in the directory.

Conclusion

Due to its high efficiency and flexibility, FFmpeg is one of the most popular tools in the field of multimedia processing. It is mainly controlled via the command line and supports a wide range of codecs and formats, making it widely used by both enthusiasts and media professionals.

Site Notes

This is not my original language and I don't speak it very well. I used my little knowledge and translators tools to compose the text of this article. Sorry for possible spelling or grammatical errors, suggestions for corrections are appreciated and can be sent to the contact email in the footer of the site. My intention is to share some knowledge and I hope this translation is good enough.


Some of the content on this website, including text, images, graphics and other materials, may be generated or enhanced by artificial intelligence (AI) tools. For more details on the use of AI, please see our Term of Use.

Advertisement
Index
Advertisement