More of a quick note to self about converting video formats:
To convert wmv to flash video:
ffmpeg -i input.wmv -ar 44100 -qmax 8 out.flv
This does the following:
- -i input.wmv - Load input file
- -ar 44100 - Resample audio to 44.1kHz.
- -qmax 8 magic voodoo about quality. Gave better results than not using it.
- out.flv save it as an flv.
Easy.
0 Comments