Asked 3 years ago
14 Nov 2020
Views 478
angeo

angeo posted

How can I extract audio from video with ffmpeg?

i have video file in .mp4 format
and want to convert video to audio format
also want to downsize the disk space as well
sachin

sachin
answered Nov 30 '-1 00:00

install ffmpeg


sudo apt install ffmpeg


and also try this command to convert

ffmpeg -i c.mp4 -q:a 0 -map a c.mp3
Post Answer