Log in

View Full Version : wmv to avc


killerhex
1st March 2006, 11:04
i have encoded some avi[xvid] - mkv[h264/avc] and the quality hasnt changed but i have some wmv my friend encoded

i need a encoder to wmv to avc but to a small file siza 80-110mb at the most

anyone can help i tried RealAnim but besweet didnt encode the audio or video it said error anyone got any other encoder i could use

DarkZell666
1st March 2006, 12:45
You will have to use AviSynth to decode the wmv via an AVS script that will probably look like this :

yourWMVscript.avs :

vid = directshowsource("yourWMVmovie.wmv")
return vid


you might have to use directshowsource("yourWMVmovie.wmv",convertfps=true, fps=xx.xxx) instead, where xx.xxx is the framerate of your wmv file.

... and select yourWMVmovie.avs as the source file.

This will work for sure with MeGUI, RealAnime, and vdub/vdubmod (but with vdubmod you'll have to extract the audio stream to uncompressed wav and reencode it your self later)

killerhex
1st March 2006, 13:32
thanx

DarkZell666
1st March 2006, 13:59
It must have worked then ;)