+ Reply to Thread
Results 31 to 60 of 75
-
Last edited by davexnet; 19th Nov 2023 at 20:51.
-
-
Yes, it assumes "convertFPS" was at one time previously used in the past to increase the frame rate,
so for RestoreFPS, you have to provide the original frame rate (which must be less than it is now)
EDIT I just saw this post, poisondeathray used double rate deinterlace first, to go from 25 > 50 fps,
then he used this filter
https://forum.videohelp.com/threads/411715-Help-with-better-upscale-on-this-source#post2706931Last edited by davexnet; 19th Nov 2023 at 23:27.
-
-
Are you using the original source such as in post #8 ?
Your MP4 ("Master - Vogue Soft....MP4") if similar to the one in post # 1 isn't the same; and has already been single rate deinterlaced. It's missing fields so you won't get proper deblending with restorefps -
Yes, I was trying with another deinterlaced source so it wasn't working.
However, I also tried with the same source that you worked with (25 fps interlaced), I did the decoupling process and also the "RestoreFPS" phase, but I didn't get your result with smooth frames.
Is this because I didn't get to the RemapFrames stage or is it unrelated? -
The smoothness required both RemapFrames and RIFE , but also Trim to put it into phase for that sample . It's explained in the post .
Try it on the actual sample in post #8, so you can learn what the script is doing, so you can make adjustments and apply it to full video
Even if you weren't making it smoother, the deblending is the 1st critical step for everything including denoising, upscaling . If you upscale blurry blended image, it's going to look worse than upscaling a non blurry image -
Hi friend, surprisingly, I'm trying to restore this same file, but I can't run your script. I have
''AviSynthPlus 3.7.3'' installed, and I have ''MP_Pipeline.dll'' in the plugin folders, but I know little about the software and I can't find a way to run the 32-bit version to execute the ''restorefps'' phase.
When I open AvsPmod and try to run MP_Pipeline, I get this error in the print below.
Could you help me with what I might be doing wrong? -
-
-
-
-
It's the wrong syntax. You need the splitter ### ### and the """ on both ends . You need to run the script within the mp_pipeline. Inbetween both """ and """
A basic source filter only script with mp_pipeline loading the video in x64 avs would look like
Code:MP_Pipeline(""" ### platform: win64 LWLibavVideoSource("PATH\YourVideo.ext") ### ### """)
(It would be so much easier and faster if someone would compile x64 versions of old plugins like restorefps) -
-
-
-
-
-
You loaded the plugin , but you need to call the filter to use it . Such as
Code:restorefps(29.97, 0.8)
Code:MP_Pipeline(""" ### platform: win64 LWLibavVideoSource("PATH\YourVideo.ext") trim(2,0) bwdif(field=3) ### ### ### platform: win32 LoadPlugin("PATH\RestoreFPS.dll") restorefps(29.97, 0.8) ### ### ### platform: win64 #add any x64 filters here ### ### """)
-
-
Look at post 53
You are missing ### ### to close off the win32 section
Just copy/paste it and change the paths to your video and plugin location -
-
Do you get error message if you comment out or delete the 4 filters? If not, start add them back 1 by 1 to debug which filter is the problem
-
-
Not normal
What AVS versions ?
Confirm that you have both avisynth x64 and x86 installed and that you're using the most recent mp_pipeline version .
https://github.com/pinterf/MP_Pipeline/releases
Did you do this as per the mp_pipeline README? There should be 4+4=8 files
Code:Copy files from x86 (or x86_xp) folder to the plugins directory for 32 bits plugins Copy files from x64 (or x64_xp) folder to the plugins directory for 64 bits plugins
-
Good morning.
The ''AviSynth+'' version has 2 versions installed ''32 and 64 bits'', right? If so, this would be the version I have installed.
About the ''mp_pipeline'' version, it is the most recent version ''MP_Pipeline v0.23'', I downloaded it again and added it to the respective folders. Here are the pictures
I tried to change the ''RestoreFPS'' plugin, I changed it to the 3 available in the folder, which are: ''RestoreFPS.dll'', ''RestoreFPS_310705.dll'', ''RestoreFPS_old.dll'', but again I face the same error, it only executes the loading but does not finish.
Similar Threads
-
How do i upscale PAL
By HansensUniverse in forum Newbie / General discussionsReplies: 26Last Post: 4th Feb 2022, 00:30 -
How do you upscale videos in MeGUI?
By Guernsey in forum Newbie / General discussionsReplies: 9Last Post: 5th Jan 2022, 14:09 -
AVISynth Help: How do I upscale in MeGUI?
By Guernsey in forum Newbie / General discussionsReplies: 0Last Post: 12th Oct 2021, 04:45 -
What is a better method to upscale 3D images?
By Guernsey in forum Newbie / General discussionsReplies: 14Last Post: 2nd Oct 2021, 13:54 -
What is the best way to upscale videos.
By Felow in forum Video ConversionReplies: 15Last Post: 9th Jan 2020, 15:00