Skip to main content
ffmpeg -i video.mp4 -vn -acodec copy audio.aac 

Here’s a short explanation on what every parameter does:

  • -i option specifies the input file.
  • -vn option is used to skip the video part.
  • -acodec copy will copy the audio stream keeping the original codec.
jherran
  • 4k
  • 3
  • 26
  • 34