-
-
Notifications
You must be signed in to change notification settings - Fork 55
AviSynth Frame Interpolation
Anime4000 edited this page Aug 8, 2017
·
6 revisions
Make your video more smoother and more real, plus helps reduce eye strains, most Smart TV has this feature, for example Sony MotionFlow XR 240.
If you don't have AviSynth+ installed, please follow this instruction before proceed.
- SVPFlow AviSynth+ Frame Interpolation plugins
- Extract SVPFlow
plugins
&plugins64
intoC:\Program Files (x86)\AviSynth+
- Open
AvsPmod.exe
- Paste and Edit this script
Video="robot_imouto.mp4"
Core=4
NewNum=120
NewDen=1
Preset="Medium"
Tuning="Film"
UseGPU=true
DirectShowSource(Video).ConvertToYV12()
InterFrame(Cores=Core, Preset=Preset, Tuning=Tuning, NewNum=NewNum, NewDen=NewDen, GPU=UseGPU)
-
Video=
(string) Path of video file only file name will assume video & script in same folder -
Core=
(int) How many CPU core need to use -
NewNum=
(int) How many fps -
NewDen=
(int) Divide how many fps, eg: 59.94fps = 60000 / 1001 -
Preset=
(string)"Medium"
,"Fast"
,"Faster"
,"Fastest"
-
Tuning=
(string)"Film"
,"Smooth"
,"Fast"
,"Weak"
-
UseGPU=
Use nVidia/AMD GPU for acceleration
Save your script
Import to IFME
Encode
ENJOY!!!