Quote:
Originally Posted by HorseTears
Slim - thanks for the recommendation. I'm sorry to be a giant pain in the you-know-what, but any chance you could provide some more detailed instructions? I'm not a developer/coder/engineer and I feel a bit lost. I downloaded FFMPEG and after an hour reading through dozens of articles I'm having trouble even verifying if it's actually installed let alone learning how to use the program. The FAQ pages on FFMPEG's site are clearly written for people with at least some coding/developing experience. I'm lost.
|
Download the latest static build from:
http://ffmpeg.zeranoe.com/builds/
Extract the contents to a folder on your drive.
Add the folder containing ffmpeg.exe, e.g "C:\ffmpeg\bin" to your Windows environment path.
Open the folder containing your video files in a command prompt.
Here's an example of a command line that would convert the audio to AAC, and copy without re-encoding the video, from a file named inputfile.flv to a file named outputfile.flv:
ffmpeg -i inputfile.flv -vcodec copy -acodec libvo_aacenc outputfile.flv