Log in

View Full Version : using avisynth to read rmvb files


yuan861118
20th January 2006, 02:20
i want to convert rmvb files to mpeg2 and burn it onto a dvd
however encoders such as CCE and tmpgenc does not convert rmvb but i got a direction saying that "Real Alternative allows avisynth to read rmvb files via the directshowsource method, which in turn allows these to be passed to any of these encoders." can anyone teach me how to convert rmvb to mpeg2 by using this method
any help would be appreciated

mikeytown2
21st January 2006, 12:24
Well I Haven't done this my self but from what you told me i can give you a good chance of doing this...

1. Download Real Alternative Or i think Media Player Classic has it as well.

2. Download AVISynth

3. Create an avs file (notepad) that has this in it
DirectShowSource("C:\myfile.rmvb", fps=119.88, convertfps=true)

4. It is most useful when the fps parameter is set to the least common multiple of the component vfr rates, e.g. 120 or 119.880. if these values don't work with your video, find the frames per second of the video and put it in there, like fps=24

5. Open avs file in CCE or tmpgenc. if you want a open source MPEG2 encoder try HC or QuEnc.

Good Luck
-Mike