


I haven't added PotPlayer yet but you can follow this guide to set it up with ffdshow, or the newer one that uses AviSynth (last time I tried it didn't work so I just used ffdshow). I made this script a while ago that sets it up with MPC-HC and Kodi with just a few clicks. There's also SVP 3.1.7 (last free version) which can be GPU-accelerated but you can disable it to use the CPU. Again, I am very grateful for your work and time investment to share this with us.
Potplayer avisynth for free#
Your solution literally seems to be the only way to do it for free with no other major requirements. This also means that if you copy any sample scripts into your plugin directory they will always be included, and may generate errors (in old versions). Literally every other solution I found is either not free, or requires a video card from a specific manufacturer, or does not work in real time and must be transcoded. In old AviSynth versions (up to 2.0.7) all AVS files in your plugin folder were automatically included in your script. I was searching the internet, far and wide, for a free technique to actually do this within a media player. Perhaps the player/filter doesn't like processing a new part of the video when a previous one hasn't finished processing or something I wanted to thank you for sharing your research and discovery of using this technique within PotPlayer to do frame motion interpolation.
Potplayer avisynth update#
When using InterFrame-2.8.0.1 in potplayer 1.6 on specific frames of the video to fail. UPDATE I want to thank everyone who took the time to help a fellow out, my pc shuts down like normal again Special thanks to u/mrman08 for this solution. select AviSynth Filter in the list and press OK Select AviSynth Filter and set Prefer. I'm having problem on moving the seeker, the player just closed suddenly, is it because of the GPU? I'm using 1050TiĬan confirm, especially if I spam left or right arrows to seek back and forth, but it even happens if I just try rewinding back once sometimes. Here is a sample of what the AviSynth script could look like. Hi, Ive been using SVP for frame interpolation with potplayer. MBlockFps(super, backward_2, forward_2, num=60, den=1, mode=2) LoadPlugin("C:\Program Files (x86)\AviSynth+\plugins64\mvtools2.dll")īackward_1=MAnalyse(super, chroma=false, isb=true, blksize=32, blksizev=32, searchparam=3, plevel=0, search=3, badrange=(-24))įorward_1=MAnalyse(super, chroma=false, isb=false, blksize=32, blksizev=32, searchparam=3, plevel=0, search=3, badrange=(-24))īackward_2 = MRecalculate(super, chroma=false, backward_1, blksize=8, blksizev=8, searchparam=0, search=3)įorward_2 = MRecalculate(super, chroma=false, forward_1, blksize=8, blksizev=8, searchparam=0, search=3)
Potplayer avisynth install#
Motion Interpolation Interpolate 24fps videos to 60fps in PotPlayerĭownload and install the latest AviSynth+ (with vcredist)Įxtract 圆4 from the archive (DePan.dll, DePanEstimate.dll, mvtools2.dll) to C:\Program Files (x86)\AviSynth+\plugins64\ (adjust the avs script if avisynth is not installed in this directory)Īvisynthplus_motion_interp.avs SetMemoryMax(512)
