PDA

View Full Version : wmv to avi


cool9
17th July 2007, 18:21
Possible to convert wmv vfr to avi cfr? Can't seem to get it synchronized. I used assumefps=29.97. Avisynth website said convert to a common framerate:

directshowsource("C:\filename.wmv", fps=119.88, convertfps=true, audio=false)
FDecimate(29.97)

Avisynth doesn't have an FDecimate filter but Neuron does. The Decimate and FDecimate are pretty complicated. He suggests using his Decomb, IVTC package for this. I don't know where to begin. Seems I did this once before and it wasn't that difficult.

LoRd_MuldeR
17th July 2007, 18:56
A simple Avisynth script with the following command should do the job:
DirectShowSource("C:\filename.wmv", fps=25, convertfps=true)

Just open it in VirtualDub and encode as usual. (if needed replace the 25 with an appropriate value first)
Also make sure you have an up-to-date version of Avisynth installed...