Thomas' Tech Tips

Rip the sound off of a video file and save it as mp3

3 December 2023 - Thomas Damgaard

To extract the audio from the video and save it as an MP3, you can use the following command:

ffmpeg -i video.mp4 -q:a 0 -map a video.mp3
Filed under: audio, ffmpeg, howto, multimedia, tips, video

Back to article list