Ask Your Question
0

How can ffmpeg be used to transform an mp4 file into an mp3 file?

asked 2021-07-13 11:00:00 +0000

bukephalos gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2022-02-17 06:00:00 +0000

djk gravatar image

FFmpeg can be used to transform an mp4 file into an mp3 file by using the following command:

ffmpeg -i input.mp4 -vn -acodec libmp3lame -ab 256k output.mp3

Explanation of the command: - -i input.mp4: Specifies the input file name as "input.mp4". - -vn: Disables video recording, which means FFmpeg will only handle the audio stream. - -acodec libmp3lame: The audio codec used for the output file is mp3lame. - -ab 256k: The audio bitrate is set to 256 kbps. You can adjust this value as per your requirement. - output.mp3: Specifies the output file name as "output.mp3".

This command will create a new mp3 file with the same audio track as the original mp4 video file.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-07-13 11:00:00 +0000

Seen: 1 times

Last updated: Feb 17 '22