Topic: Simple, general, and minimal installation for non-real-time usage
Hi. I don't want to do anything real-time. I just want to nterpolate frames and feed the Avisynth output to VirtualDub so I can render a new AVI at my higher target frame rate.
I've installed AviSynth 2.6.0 Alpha 3 over the top of my 2.5.8. I've copied your 4 dlls into my plugins folder, along with the strange file InterFrame2.avsi. Here's my script:
AviSource("my-29.97fps-video.avi" )
ConvertToYV12()
Import("C:/Program Files/AviSynth 2.5/plugins/InterFrame2.avsi")
InterFrame(NewNum=8991, NewDen=100, Cores=2)
I want to interpolate 2 new frames between each original frame, effectively changing from 30fps (29.97 really) to 90fps (89.91).
It bombs when trying to open the script in VirtualDub. Can you all please help me? I wish as little software installed in my system as possible. I do not want the script generator. I just want the minimal non-realtime stuff to help me generate a new AVI. Thanks so much, in advance.
(I have numerous other frame rates I want to use, but picked 90fps as a simple example.)