Given an AVI encapsulated video with WMA2 audio and MP4 video how do I pass-through the video, convert the audio to MP3; then re-encapsulate the entire file into an AVI?
ffmpeg -i "foo bar.avi" -acodec libmp3lame "Converted\foo bar.avi"
Now how do I do that same command for every .avi file in this directory?
(need a solution using bash or Windows CLI [for?])
-vcodec copyin the ffmpeg command line. It will save video conversion time + retain the same quality in video. – anishsane Dec 4 '12 at 12:33