- cross-posted to:
- [email protected]
- cross-posted to:
- [email protected]
I’m making an animatic, and want to know how to extract audio from a video and turn it into a file I can insert into a movie making program.
I’m making an animatic, and want to know how to extract audio from a video and turn it into a file I can insert into a movie making program.
You may want to pass through the audio so it’s not reencoded. The top answer on this stack overflow article has an example. https://stackoverflow.com/questions/9913032/how-can-i-extract-audio-from-video-with-ffmpeg
And a copy/paste:
ffmpeg -i input-video.avi -vn -acodec copy output-audio.aac
Certainly.
ffprobe
is also a good command to check what audio codec is in the video