Hi
Heres how to extract the audio from a single video file
ffmpeg -i infile.mp4 -vn -c:a copy outfile.m4a
batch extract audio from video files
find -s . -type f -name "*.mp4" -exec sh -c \
'ffmpeg -i "${0}" -vn -c:a copy "${0%.*}.m4a"' \
"{}" \;
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.