Tech Blog

FFMpeg conversion - wmv to flv HOWTO

Posted At : March 12, 2010 4:34 AM 0 Comments

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

Post Your Comments


If you subscribe, any new posts to this thread will be sent to your email address.