Convert videos to 60fps (Updated 21 May 2015)

Sections:

Introduction:

Many modern TVs now include an extra frames feature, usually either 120Hz or 240Hz. This just means they take the source video, which is usually between 24-30FPS, and add new, interpolated frames between the original frames that make the motion look much more smooth.

High framerate (HFR at 48fps) was used in The Hobbit and will be used in upcoming films like the Avatar sequels, so why not watch all your movies at higher framerates?

A lot of people don’t realize this, but 99% of TVs made before this feature was introduced are actually capable of displaying 50FPS and 60FPS, and of course most LCD monitors display 60FPS as well.

This tutorial will allow you to convert videos of any framerate to higher framerates; 25FPS becomes 50FPS and 24/30FPS becomes 60FPS by default, or you can specify whichever framerate you want.

This script offers greater quality than any televisions I have seen.

I’m sure many people will want to see how well this script works, so here’s a comparison:
Original File
Converted File

Note: This can now be done in realtime using Universal Media Server!

Purpose:

This post provides instructions on how to easily convert any video to 60FPS, which allows you to take advantage of this feature of modern TVs on your computer monitor or TV without actually buying anything.

Step 1:

The files needed for this step are found in this zip folder (~3MB).

Run and install the file AviSynth.exe.
It is an early version of AviSynth 2.6 that is more stable and faster for multithreading than 2.5 releases.

Download and install MeGUI, run it, let it update all the things it wants to and import all of the presets.

Optional Tip: If you want MeGUI to update to the very latest stuff (at your own risk) you can push ctrl+s, go to the Extra Configuration tab, and in the Auto Update section select “Use development update server”

Close MeGUI and extract the files in the tools folder from our zip file into your MeGUI tools folder, which for most people will be either C:\Program Files (x86)\MeGUI\tools\ or C:\Program Files\MeGUI\tools\.

Step 2:

Download and install MKVToolnix.
When that is installed, run MKVMerge (Start Menu -> All Programs -> MKVToolnix -> mkvmerge GUI).

You will also need codecs installed. If you don’t already have them I recommend K-Lite Mega Codec Pack. If you install K-Lite, make sure to select “Profile 9: Lots of Stuff” during installation.

Step 3:

Start MeGUI again. You should be left with a window that looks similar to this:

step3

Step 4:

Push ctrl+r, or go to Tools -> AVS Script Creator.
Now you should see something like this:

step4

Step 5:

Click the Config button next to Avisynth profile.
It should look like this:

Step 6:

Click the New button down the bottom and type 60FPS in the name box, so it should look like this:

Step 7:

Now for the script that will do the actual 60FPS conversion.
Just copy and paste the following code into the text input area.

Cores=4
SetMemoryMax(512)
SetMTMode(3,Cores)
PluginPath = "C:\Program Files (x86)\MeGUI\tools\avisynth_plugin\"
LoadPlugin(PluginPath+"svpflow1.dll")
LoadPlugin(PluginPath+"svpflow2.dll")
Import(PluginPath+"InterFrame2.avsi")
<input>.ConvertToYV12()
SetMTMode(2)
<deinterlace>
<crop>
<denoise>
<resize>
InterFrame(Cores=Cores)

Important note #1: Make sure the path on the third line is correct.
For example, if you are running 32-bit Windows, you will need to modify the path to “Program Files” instead.

Important note #2: You should change the number “4” in the script (on line 1) to your number of CPU cores. If you don’t know how many cores your CPU has just Google your CPU and you should be able to find the specs somewhere, or 4 should be fine anyway.

Important note #3: If you have a video card, you can improve quality by adding “GPU=true” to the script. However, it may make encoding time slower, so take that into account.
So InterFrame(Cores=Cores) would turn into InterFrame(Cores=Cores, GPU=true)
If you do this, you may also need to go into your MeGUI tools folder (usually C:\Program Files (x86)\MeGUI\tools\x264) and rename the file opencl.dll to opencl.dll.bak. This will let MeGUI use the version of opencl.dll that your video card drivers have installed, instead of the generic one from MeGUI.

Important note #4: This script always outputs either 50FPS or 59.94FPS (60FPS) for compatibility reasons. If you want to always double the framerate instead, so that for example 23.976FPS turns into 47.952FPS (48FPS), you can use the “FrameDouble” parameter.
So InterFrame(Cores=Cores) would turn into InterFrame(Cores=Cores, FrameDouble=true)

So now your window should look similar to this (with different text):

Step 7

Step 8:

Click the Extra Setup tab and make sure “Prefer DSS2 over DirectShowSource” is checked.

Optional tip #1: You might also want to choose your preferred resizer. For aspect-ratio changes (like from 720×576 to 720×480) a neutral filter like Spline36 will be nice. For actual resizing (like from 1920×1080 to 1280×720) a sharp filter like Spline64 will be best. I usually just leave it on Spline36. Make sure to untick the checkbox on the option after you change the default resizer, otherwise it will always be used by default which is often unnecessary.

Optional tip #2: I recommend changing the “MOD value used for resizing” to mod4. This gives the best balance between compatibility (a lot of devices like PS3 don’t have good mod2 support) and aspect ratio accuracy (the higher the MOD value, the more likely the aspect ratio is to be skewed more heavily).

Now it should look something like this:

Step7rev3

Then just click the Update button then the OK button

Step 9:

Now we’re back to the AviSynth script creator window and now that we have our 60FPS AviSynth template made and selected, it’s time to choose which video we want. Just click the button next to Video Input up the top of the window and find your video, then click Open.
A window will pop up with buttons, click the option on the right, usually either “DirectShowSource” or “AviSource”.
A window will pop up to show you the video, you can just close that.
Now you should see something like this:

Step9

Step 10:

Click the Save button. The video preview window might pop up again, you can close it again.

Step 11:

Now is the time when you need to choose the quality of the video and audio.

If you don’t know what to do here, something quick and easy is to just use CRF, which means you let the codec decide on the bitrates itself. So you can click the “Config” button next to the “Encoder settings” dropdown when you have a x264 option selected, then just enter a number between 16-20 in the “Quality” input box. 16 means your video will be almost exactly the same quality as the source, while 20 will look good too while taking up less space. Personally I use 16 for everything because why not? šŸ™‚

So when you have your quality, click Queue in the Video encoding section.

Step 12:

Now your video is ready for conversion.
Now just go to the Queue tab and click Start down the bottom, then wait for it to finish.

Step 13:

The final step is to add your audio and/or subtitles from the original file to the converted file. This process uses muxing, not conversion, so there is no quality loss.
For this we will use the program we installed earlier, MKVMerge.
So run that and drag the converted file into that program, then do the same with the original file. If you can’t drag them on, you can use the add button instead.
Now you have several items in the Tracks, chapters and tags section. You just need to untick the ones you don’t want. Usually you will want to leave them all selected except for the original video track, as I’ve done in the following example:

Finally, set the Output filename down the bottom of the window and click Start muxing.
When that is done, you have your final video!

Final Thoughts:

This might seem like a long process, but actually it is only long once. Since we have now made templates, the process for the videos from now on will be much faster; instead of entering the script each time, now you can just make sure your 60FPS AviSynth script is selected.

This file can now be played just like any other video. I personally watch videos on my TV which is linked up to my computer using the awesome, free program called Universal Media Server, and that handles these 60FPS videos perfectly with no configuration.

Any comments are appreciated. If you can think of an improvement to the script, or to the process, or if you just found it useful and want to say thanks, please do leave a comment. I would love to know that it’s being used.

If you want to donate to help me with server costs and time spent keeping this article updated, you can do so here with my thanks šŸ™‚





FAQ:

  • How can I fix random crashing of vfw4x264.exe?
    This probably means you are encoding a file using an input mode other than DSS2, which can happen if the clip is .m2ts or .dga (blu-ray) or another uncommon format.
    You can fix it by changing the 2 in the second line of the script to either 3, 4, 5 or just removing that line (try them in that order, since the options get progressively slower)
  • The option “Prefer DSS2 over DirectShowSource” is disabled. or
    I get an error like “can’t load avss.dll”.
    This means your computer is missing Haali Media Splitter. You can download it here or as part of a K-Lite Mega Codec Pack and the error should go away after you install it. If you install K-Lite, make sure to select “Profile 9: Lots of Stuff” during installation.
  • The file stops encoding after 99%.
    This usually indicates a codec configuration issue. Try installing/reinstalling K-Lite Mega Codec Pack, and make sure to let it select its preferred defaults (not “quick upgrade”)
  • Can I customize the output framerate to make it 48FPS, 75FPS, 120FPS, or anything else?
    Yes, you can choose any framerate you want. It is best to choose a framerate that is divisible in some way with the original video, but even that is your choice. You just need to add the options “NewNum” and “NewDen”, like this:
    InterFrame(Cores=Cores, NewNum=48000, NewDen=1001)
    NewNum stands for “New Numerator” and NewDen stands for “New Denominator”. In general, with NTSC material the NewDen should be 1001 and the NewNum should be 1000x your desired framerate (so for 48FPS you want 48000 and 1001) while for PAL content you might just want something like NewNum=75,NewDen=1 to output 75FPS content.
  • The output seems choppy, can I make it smoother?
    Yes, by default we output a video that sacrifices a little smoothness in order to reduce errors, but different people’s eyes pick up on different things so it can all be a matter of taste. You can try the Smooth tuning, like this:
    InterFrame(Cores=Cores, Tuning="Smooth")
    Also, using GPU mode produces more accurate results and therefore should appear smoother, though it can be slightly slower overall. You can try it like this:
    InterFrame(Cores=Cores, GPU=true)
    Or try both options at once like this:
    InterFrame(Cores=Cores, Tuning="Smooth", GPU=true)
  • Why isn’t the GPU being used much in GPU mode?
    Only some things are done with the GPU in GPU mode, it’s still mostly done by CPU but helped by GPU.
  • Why is the video still the original framerate after running it through MKVMerge?
    You probably selected the wrong tracks in MKVMerge so you’re getting the original video track instead of the new one; make sure you untick the original video stream before muxing.
  • Why does MeGUI give an error “SVSmoothFPS: unable to load library given in ‘compose’ […svpflow2.dll]
    Try re-installing or updating your video card drivers, and if that doesn’t work then maybe your video card doesn’t support OpenCL so remove GPU=true from your script.
  • Why am I getting the error “SVSmoothFps: unable to load library given in ‘compose'” when I try to run the encoding process, but not when I preview?
    Go into your MeGUI tools folder (usually C:\Program Files (x86)\MeGUI\tools\x264) and rename the file opencl.dll to opencl.dll.bak. This will let MeGUI use the version of opencl.dll that your video card drivers have installed, instead of the generic one from MeGUI.
  • Why am I getting the error “Error message for your reference: Can not read the video stream”?
    MeGUI can’t read from folders or files with certain characters, so try moving the video to a different folder and/or renaming the file.

Thanks:

Widezu69 for providing the original AviSynth script that I used as a base.
Fizick for MVTools, the library that does all the work, and SVP for the modifications to MVTools that make it even better for our purposes.
Everyone on various forums for their feedback, this is really a community effort.

Changelog:

21/05/2015:

  • Updated InterFrame to 2.8.2, which improves speed

16/03/2015:

  • Corrected and improved the instructions and FAQ

05/03/2015:

  • Updated InterFrame to 2.8.0, which improves speed and lowers memory usage
  • Updated conversion script

24/02/2015:

  • Updated the instructions and FAQ

27/09/2014:

  • Updated InterFrame to 2.6.0
  • Added a tip about using framedoubling mode
  • Updated most images to reflect the minor changes to MeGUI
  • Minor improvements to instructions

22/07/2014:

  • Added more items to the FAQ

10/07/2014:

  • Added more items to the FAQ
  • Shortened the changelog to only the latest 3 changes by default

20/05/2014:

  • Updated instructions
  • Added more tips
  • Added to and updated the FAQ
  • Updated the link to MKVToolnix to always point to the latest version

Click here to display the rest of the changelog

50 Comments

  1. Got it now, but produces a lot of artefakts in action scenes. I think most smartTVs are doing a better job even in real time.

  2. Nice effort and I can understand the purpose of this project but after encoding there are way too many artifacts in fast motions. There is no way not noticing that. I think the problem is you use the code from svp because I remember using their software resulting in the same loss of video quality. Sorry but in my opinion it’s not worth it.

  3. InterFrame has a method to 100fps ?

  4. Is there a ffmpeg solution ?? because can’t force megui to work and windows is satan

  5. i Get this errror avisynth script error: filedirectory : cant find filters to render for the input data (tranlated) maybe it is because the file has subs

  6. Advice for anyone getting files stuck at 99%:

    Try using the development server updates. That fixed the issue for me. (In MeGUI, hit Ctrl+S, go to the Extra Configuration tab, and in the Auto Update section select ā€œUse development update serverā€. Hit Save, then hit Ctrl+U to go through the update process again.)

    Alternatively, in the AviSynth configuration dialog (the window you got when you hit Ctrl+R, then hit config), in the Extra Setup, unselect “Prefer DSS2 over DirectShowSource”, this also fixes the issue. I don’t know what negative consequences that has though.

  7. Hi !
    Well at first the obligatory THANK YOU.
    I havent done anything with Avisynth since ten years but now i had a problem where i had to reconsider:
    I have a CHEAP Action cam that delivers 10Hz@4k or 15Hz@2.7k
    Using your guide the “quality” improved drastically.
    BUT (there always is one, right?) there is one major problem:
    In the case of 10 –> 60 conversion there is a problem that every 6’th frame is razor sharp (or lets say oversharpened by that lousy chinese Firmware) and the next 5 frames are not-as-sharp of course.
    So tiny yet contrast imgae details (e.g. branches) seem to flicker with 10Hz…
    It got way better with using “OverrideAlgo=23” for InterFrameGUI (strangely i could not use “Tuning=Smooth” as “Smooth” is not recognized, anyone ??

    But still it is VERY obvious…
    So it is a kind of “Sharpness pumping” that irritates the eye.
    I tried some deflicker / deghost filters to no success.

    Does anyone have an idea what mighty filter to use to get control over this ?

    THANK YOU yet again and please share if you have any insight in solving my problem.

    Nils

    P.S. for beeing able to convert 4k i had to patch the encoder by using “4gb_patch.exe” !!!

  8. Clement Saggers

    December 6, 2015 at 2:25 pm

    It doesn’t work anymore, it’s just randomly decided to not work,it used to work great, but now when I try to load a file, it just gives me some stupid bull about “Script error, there in no function called SetMTmode” (or some thing like that that no human on earth could possibly understand), what the HELL does this mean? I speak English, not Robot. And how do I fix it?

  9. Hello MeGUI the recently updated to version 2624. this makes updating the video encoding, but the status is no more than 0%. I looked at the log gives the following error:
    – [Information] [06.12.2015 12:47:25] resolution: 1920×800
    – [Information] [06.12.2015 12:47:25] frame rate: 60000/1001
    – [Information] [06.12.2015 12:47:25] aspect ratio: 12: 5 (2400)
    – [Information] [06.12.2015 12:47:25] Job command line: “C: \ Program Files \ MeGUI \ tools \ x264 \ x264.exe” –keyint 599 –sar 1: 1 – output “C: \ Users \ Luiz Michel \ Downloads \ Street.Fighter.Punho.Assassino.264” “C: \ Users \ Luiz Michel \ Desktop \ Street.Fighter.Punho.Assassino.avs”
    – [Information] [06.12.2015 12:47:25] Process started
    – [Information] [06.12.2015 12:47:25] Standard output stream
    – [Information] [06.12.2015 12:47:25] “” “Standard error stream” “”
    It gives this error stream and so the video does not convert but still relying on status.

  10. I would like to review the tutorial for the version of MeGUI 2624.

  11. Here the status of the log :
    http://imgur.com/vZ7QyC1

  12. This version does not run the upgrate
    to bad i was very interested, please upgrate the
    script for the last version

    thank you

  13. Jorge Offemaria

    December 9, 2015 at 3:36 pm

    Hi,

    Thank you very much for this tutorial. I am now obsessed on converting my old movies to 60fps :). It is worth the time specially when watching it on big screen. I just have one question, for easier management of metadata, I wanted to try mp4 instead of mkv as the output then mux the files with yamb or other software that has the same functionality. I was just wondering if you recommend any settings for that? or can I just use the same settings and just change the output to mp4?

    Thank you in advance.

    -Jorge

  14. Hi,

    I didn’t have any issues until I was notified on an update. The error was about something like “…make sure avisythn was properly installed.” so just to start fresh I unistalled everything. Downloaded the files again but now I am getting “couldn’t run updater” so I cannot proceed with the following steps.

    A little help please. I would highly appreciate it.

  15. Hello, I did all the steps in this article and at first it worked like a charm, but the next day, every video gets stuck at 99.60% when encoding. It happens to both of my computers. I tried absolutely everything, reinstall klite codecs and I even used different codecs and a different version of Megui and still nothing. Please reply asap I need to convert videos again!

  16. Hey SubJunk.. I have a question. I was trying to encode some videos but when it’s finished I just see no difference between the original video and converted video. I do something wrong? This is the script:

    Cores=8
    SetMemoryMax(512)
    SetMTMode(3,4)
    PluginPath = “C:\Program Files (x86)\MeGUI\tools\avisynth_plugin\”
    LoadPlugin(PluginPath+”svpflow1.dll”)
    LoadPlugin(PluginPath+”svpflow2.dll”)
    Import(PluginPath+”InterFrame2.avsi”)
    .ConvertToYV12()
    SetMTMode(2)

    InterFrame(Cores=8, GPU=true, Tuning=”Smooth”)

  17. when i try to perform step 11 it comes up with an error saying ” Unable to load DLL ‘AvisynthWrapper’:The specified module could not be found (exception from HRESULT: 0x8007007E)” and then says fatal error with reason being ” Unable to load DLL ‘AvisynthWrapper’:The specified module could not be found (exception from HRESULT: 0x8007007E)”.

  18. when i am opening video(for conversion), i get the error like can’t load dll AvisynthsWrapper

  19. I need a bit of help . the program works perfectly – well 90% .. first problem some times the beginning of the videos converted are discolored, distorted, and pixelated. and problem 2 . when i try and convert a 4k video it loads for a bit then says “AviSynth DirectShowSource timeout waiting for graph” I know converting a 4k will take a lot of memory but my computer has more than enough to finish the job. what is the issue ? do i have to config it different?ļ»æ

  20. Did someone tried to get a 3D SBS 48fps ? šŸ™‚
    If not, would it possibly work ?
    I’m about to convert a native bd3d to sbs because i’m curious, so if i can add it frames, even more fun

  21. Great guide – I left a comment on the main page that maybe I should have left here.

    2 things — on your advice “The output seems choppy, can I make it smoother?”

    it took me a while to realize you meant that

    “InterFrame(Cores=Cores, Tuning=”Smooth”, GPU=true)”

    should be

    “InterFrame(Cores=Cores, FrameDouble=true, Tuning=”Smooth”, GPU=true)”

    based on the tutorial – that one suggestion on that one line leaves out the FrameDouble value

    maybe it was just me but I figured I would mention that

    also – I will quote from my other main reply,,,,

    When you have a video that is stuck at 99% ā€“ you can safely ā€œabortā€ in MeGUI

    then just take the resulting .264 and mux it the way do all the other ones

    it will re-index it and everything will be in sync

    one thing I find using AVIDemux much more reliable with your script and muxing than MKVToolNix GUI by far.

    I can explain it further if anyone wants/cares.

    -d

  22. I have a problem some videos become green garbled mess.
    it seems to be totally random I have checked some videos that work flawlessly and some that give this strange error and they seem to be indentical, source is the same codecs etc (h.264/AVC)

    any ideas? only solution I’ve found so far is either re-encode them first with something like handbrake or download another source from another release… (anime)

    also, a little sidenote… anime get’s much better result with GPU=false…

    the “extra” processing done in GPU=true seems to add more garbage inbetween frames, as in the lines become wonky in som fast movement, while it’s almost perfect with gpu=false. just a heads up, if there is a way to enable gpu without doingt the “extra” stuff, that would be great.

  23. Hey, I was wondering if there was a way to decrease the amount of warping that happens when converting from 30fps to 60fps. Thanks!

  24. I keep getting a “couldnt run updater” error whenever i try to update MeGUI. Also when i just ignore the updates and go through the steps i get this error at the beginning of Step9: http://imgur.com/a/pCnz8

  25. Hey, thanks for the great post, I was crying over not able to render interpolation real-time using SVP, then I found your post, which makes my life almost infinitely better. But I have a question, my mkvtoolnix doesnā€™t have mkvmerge GUI, only the default mkvtoolnix GUI, I am still able to use the mkvtoolnix GUI to mux the audio, but Iā€™m wondering if you can help write a few more lines on the script to automatically mux the audio too? When I was running the AVS script, in the queue it automatically queues a mux job and it was ā€œrelatedā€ to the interpolation job, but the result has no audio, like its an extra weird step it added inā€¦

    P.s I might have launched the mkvmerge.dll because I canā€™t find the GUI and its running in the background and automatically adds the queue job that does nothing

  26. Hi,

    Is there a way to change the interpolation settings? Namely to apply settings for animated video?

  27. I found the answer. Maybe you could put a link to the interframe2 settings in the FAQ section.

  28. @SubJunk

    Can you please update post for those who use Windows 10?
    Seems to be not working as well.

  29. Hello am french my english is not perfect.

    Your guide is very good but i have one problem ……………….

    I did what other did about plugins file not working at all…..

    Id like to have a real solution to this problem please look screen !

    >>> http://hpics.li/72338cf

    Thank you !

  30. I receive this error when I try choosing a video and im out of idea to solve this please help

    AviSynth script error:
    DirectShowSource: RenderFile, the filter graph manager won’t talk to me

  31. I solved the previous error but encountered a new one which is this;
    AviSynth script error:
    Script error: There is no function named “SetMTMode”

    and I am sure I put it in the script still it show the error

    Here’s my script:
    Setmemorymax(512)
    SetMTMode(3,6)
    PluginPath = “C:\Program Files (x86)\MeGUI\tools\avisynth_plugin\”
    LoadPlugin(PluginPath+”svpflow1.dll”)
    LoadPlugin(PluginPath+”svpflow2.dll”)
    Import(PluginPath+”InterFrame2.avsi”)
    LoadPlugin(“C:\Program Files (x86)\K-Lite Codec Pack\Filters\Haali\avss.dll”)
    dss2(“F:\1080p Kpop\Ori TWICE OOH-AHHLike OOH-AHH M V.mp4″, fps=23.976).AssumeFPS(24000,1001).ConvertToYV12()
    SetMTMode (2)
    #deinterlace
    #crop
    #denoise
    #resize
    InterFrame(Cores=6, Tuning=”Smooth”, GPU=true

    This error later on produce another error which is this:

    The file F:\4K Kpop\Ori TWICE OOH-AHHLike OOH-AHH M V.avs cannot be opened Please make sure it’s a valid AviSynth script and that AviSynth is properly installed. Error message for your reference: Can’t read the video streamļ»æ

  32. Hi,
    I have a problem, AVISynth tell me that the SetMTMode command doesn’t exist so I removed the 2 lines with SetMTMode.
    And I don’t know if it’s the cause but only 50 % are encoded correctly, the others have a lag between video and sound/subtitle.
    The video seems to have 110-120% speed.

  33. I’ve tried this software & really liked the results..could you tell me what settings you used for your
    example video file ? thanks

  34. can you recommend the best method to get 60 fps soap opera look.,…
    i’ve converted a few files & they still don’t look like svp player..

  35. Is there an equivalent tutorial for Mac users? The software, etc mentioned here appears to be for Windows only (or Macs with Windows emulators which I do not have).

  36. I’m having the oddest problem…I have used this setup before and so I reinstalled it. I’m running win10 but I’m pretty sure I was running 10 before…anyway

    problem 1: when I run MEGUI (running under win7 compatibility with admin privileges) it asks if I want to update..i say yes…it does its thing then says ‘need to reboot program’ I say yes…then megui crashes. rebooting program just does the same cycle. if I select no to update…program continues running.

    problem 2: when I go into creater and try to select a video (yes I already made the ’60fps’ script) it crashes and gives me an error stating that “unable to load DLL. ‘Avisynthwrapper’ the specified module can not be found. Exception from HRESULT: 0x8007007E

    what could I possibly be doing wrong? when I installed all the programs I did it under admin privileges

  37. @Finnius Same problem

  38. Works perfect!!! 120fps OUTPUT. Looks fantastic on my 144hz display!

  39. hi, plz help i have an error mesg ” there is no function names setMTMode. why is this? i followed the scripts above. with cores=1

  40. hello. plz help i have this error mesg. i followed ur script above. with core=1 ā€œAviSynth script error: there is no function named SetMTModeā€

  41. pls help

    i have this error mesg. ā€œAviSynth script error: there is no function named SetMTModeā€ i followed ur script.with cores=1

  42. Hello i test some setting for encode anime to 60fps all work well except thant i have some crash :

    InterFrame(GPU=true,Tuning=”Animation”,OverrideAlgo=13,OverrideArea=350,Cores=8)
    it produce : Process exits with error: 0xC0000005 STATUS_ACCESS_VIOLATION (-1073741819)
    But it crash alway on the same time of the video…

    i have make many many MANY test..
    it crash only with Animation not the others but i NEED IT !
    Just : InterFrame(Tuning=”Animation”,Cores=8) crash the same way..

    if i trim the images the make crash megui it work well so how can we explain that bug and how to erradicate it ?

    Also if i make an upscale HD > FHD it wont crash…. :p

  43. Hy i make Amv and normally it work well but with this sample it crash every time :
    https://drive.google.com/open?id=0B_1NOYHqSD24blJMR1M0SWJuQzQ
    (720P video)

    That’s what i use :
    InterFrame(GPU=true,Tuning=”Animation”,OverrideAlgo=13,OverrideArea=350,Cores=8)

    And the error :
    Process exits with error: 0xC0000005 STATUS_ACCESS_VIOLATION (-1073741819)

    it crash also with :
    InterFrame(Tuning=”Animation”,Cores=8)

    But it work when i do an upscale 1080P….
    https://drive.google.com/open?id=0B_1NOYHqSD24T0J4a3JCZjMwRHc

    I think the script can’t handle some images..

  44. i am getting the same error as Rashmi Ranjan is getting
    Could you please give us help?

  45. Hello this is a great guide for making excellent smooth videos, however i suggest the creator to slighly modify it for make more easier and speedy the procedure for all users.
    1) No need MeGUI 0.3.5 installation (this is an older version). Just download the last zipped (portable) package (v2624), unzip it in a new folder and auto-update all the necessary using the development server.
    2) No need install Haali splitter (“Prefer DSS2 over DirectShowSource” disabled in the FAQ section), just use the “File Indexer” button on file open, and “Queue” button in successive window.
    3) No need install any Avisynth in Windows, just open settings and check “Always use the included Avisynth”. Need to replace all the “avisynth.dll” in the MeGUI installation folder with the avisynth MT dll, just download it.
    4) Update the two svpflow dll with the latest one (version 4.0.0.128)

    Sorry for my bad english… šŸ™

  46. Hello can i have some help my 60fps is not coming out smooth tried literally everything in megui its suppose to come out smooth and its not can someone please help me thanks

  47. how to convert to 50FPS

  48. Finnius , use latest version at https://sourceforge.net/projects/megui/ and everything should work fine. Oh, and dont close second video pop up window. Its always crashing for me.

  49. Nice guide. I’m getting no errors, but the resulting video has quite a bit of ghosting, and rarely are scenes actually properly smooth. Here’s my script: http://pastebin.com/kB00SNFV

    I’d actually vouch for my TV performing better than this.

  50. On this page (http://www.spirton.com/uploads/InterFrame/InterFrame.html) you say GPU acceleration will produce worse, slightly blurrier results:

    Here you say the GPU will produce slightly better results. Well which one is it?

Leave a Reply

Your email address will not be published. Required fields are marked *

© 2023 Spirton

Theme by Anders NorénUp ↑