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. I have followed all the steps, retraced my tracks a many times now to make sure. I get to the Step 12-13 but when in queue the video final just says “waiting” as the status and never changes. Previewing the script shows it clearly working before hand.

    I am just stumped at this point, I hope someone can help. Thank you for all this I will be beyond glad when I finally get it working for sure.

  2. SubJunk

    March 24, 2013 at 9:17 am

    @GimpCent: So you clicked the “Start” button at the bottom of the Queue tab but nothing happens? Is there anything in the Log tab?

  3. @Polanski

    I actually have the Setmemorymax back to 512. Was getting some crash issues when trying to preview the video. Keeps saying out of memory, when I still have another 20GB+ freed up. You’re also correct, that it doesn’t really improve performance increasing it.

    SetMTMode, from what I understand set the force amount of CPU cores to use. These are logical cores and not the Hyper Threads from Intel CPUs. You won’t notice any difference, if you don’t have many logical cores to take advantage of. Right now, with SetMTmode(3,6), it’s using all of my CPU cores with HT enabled. So 12 CPUs are running at 99% on my i7 3930k @ 4.5Ghz.

    Also, of course you’re gonna get picture quality degradation. You’re doubling the frame rate, which requires more data to maintain it’s picture quality. If you keep the bitrate the same size for a 30fps, but increase the fps to 60, you’re basically cutting the bitrate in half for the extra frames now.

    For example, on a 30fps video, each frame get a set amount of bitrate. To keep things understandably easy, let’s just say 1 frame uses 100KB/s of data. Now, if you don’t increase the bitrate size, but you want more frames, that 100KB/s will need to split up it’s available data down to 50KB/s for each new added frame. You’ll of course notice a considerable amount of quality loss.

    So in order to maintain quality, the bitrate will need to double along with it.

    @snave
    I’m transcoding a 2hr 1080p movie at 44fps on x264 using Medium Preset with CRF @ 16. I don’t recall doing any 720p videos lately, but I believe it’s faster than real time.

    As for 2560×1600 videos, my fps average around 28fps.

  4. Is converting better or using live interpolation players like :Splash Pro for example.?
    I am talking about quality.
    Another question,How many hours would it take to convert a Bluray movie on intel i5?

  5. Please some one to tell me, where is the problem when start encoding 60.000 fps with Megui x264 64bit 10bit when process is 48% Megui stopped with error in log info:
    “The 64 bit mode of x264 is enabled. Depending on the error it may help to disable it in the MeGUI settings”
    please helping me to fix this problem, any chanse to use x264 64bit 10bit encoding for 60.000 fps, and is there any problems with this method when is encoding 30fps and 50fps ?

  6. I just want to have a program that gives med 60 FPS and i want the program to have as few buttons as possible.

    Can you make an easier program that is easier to install and easier to use?
    Can you make or recommend a program that converts to 60 fps more easily?

    The AVC video track is missing the CTTS atom for frame t
    Process exits with error: 1

  7. How do I go about this on Windows 7 Pro 64-bit?

    Do I need to do anything differently?

  8. SubJunk

    May 3, 2013 at 1:46 pm

    @Nathan: Nope, nothing different

  9. Am I doing something wrong? I get this error in Step 9: http://imageshack.us/a/img13/385/erroruw.jpg

    I had this all set up and working, but I recently upgraded my hard drive and installed 64-bit Win 7 instead to take advantage of my CPU and Ram better.

  10. For differents reasons, lot of peoples ever still with windows XP Framework 2 (standard) and don’t be abble or won’t to change this loud part of a system.
    Big mistake you made… Like a child, programming something on your own situation and hardware.
    I can use twixtor and big others programs on my PC, but not your app !..
    Shame.. no donation, no use, no way…

    Rokets to the space imbarq material very lower than your personnal PC…

  11. Great work, but i have some problem with audio/video synchronization after using MKVmerge.
    In MKVinfo i get video framerate 60fps but audio framerate is 23.976fps. When i play movie with MPC-HC sound is delayed to the video. Also the same problem occures on standalone hd player connected to TV.

  12. SubJunk

    May 6, 2013 at 10:14 am

    @Nathan: Looks like there is a problem with the AviSynth installation, you could try re-installing it

    @mkpkpkopk: AFAIK it works fine on XP, you probably did something wrong

    @tommi: Maybe the source file had an audio or video delay, in which case you need to set that again in MKVMerge

  13. @SubJunk – how can i check this delay?

  14. SubJunk

    May 6, 2013 at 7:14 pm

    @tommi: I use MediaInfo

  15. @SubJunk – mediainfo says that audio is delayed to video 10ms, in mkvmerge i write this 10ms for audio track (input -> format specific options -> delay (in ms). Even i do this audio/video synchrnozation is still wrong.

  16. SubJunk

    May 7, 2013 at 9:20 am

    @tommi: It’s possible there is also a video delay. To find the delay yourself within 50ms you can play the output in VLC and use the keys “K” and “L” to shift the audio, then when you find the right value you can enter it in MKVMerge. It’s annoying and that is why the people who make files usually encode without audio delay – the better thing to do is to add silence to the beginning of the track to synchronise it (which can be done using DelayCut)

  17. I’m getting this error=0x7e

    http://i1089.photobucket.com/albums/i349/beatsan/0x7eerror.jpg

    Is there a way to fix this? Thanks for the tutorial btw. I tried following step by step but things like this are really discouraging for someone who isn’t too savy on the in-depth tech stuff. Any help is appreciated

  18. I have so so much trouble to convert some videos to 60FPS, specially animations. I guess is a codec problem, but could anyone recommend something to solve those codec problems? (I’ve installed Klite Mega Pack) or maybe recommend something to do before I try to convert to 60FPS? (like a recodec or something)

    Please, I’m a big fan of HFR, but sometimes it gets ultra difficult.

  19. i have same problem with Mr.Joah .. please anyone help me..

  20. When I take a 1080p source at a high bitrate and use the One Click Encoder option (because I get way less WMV 99% complete loops this way) when I use 16 as the preset for Quality…the bitrate is usally below 2000kbs. Is there a setting I’m not adjusting properly? I’m using the 60fps profile from the guide and the x264: Blu-ray 720p60 encoder setting.

    Thanks for your time!

  21. I’ve tried reinstalling AVISynth and am still getting the same error πŸ™

  22. >> The option “Prefer DSS2 over DirectShowSource” is disabled.
    >> This probably means your codecs aren’t configured properly.
    >> You can fix it by uninstalling any codecs you have, restarting your computer, installing a K-Lite Codec
    >> Pack, and restarting your computer again.

    If the “Prefer DSS2 over DirectShowSource” option is disabled it merely means that you don’t have the Haali Media Splitter. Just download and install it, no need to cram your computer with the monstrous K-Lite pack.

  23. Adam, I would suspect it is the folder between HD Filme and Merged. I think it is funny about folder paths with special or non-Western characters. Try renaming that folder to something else. Actually, this is just my guess as I’ve seen things like that here before with folders having accents in the name. Worth a shot anyway.

  24. The converted video was of 60fps, i noticed the difference but when I converted my 1080p 24fps video to 60fps, its quality reduced, somewhat like 360p or 480p. How can i make sure that it stays 1080p with same quality.

  25. Adam, I had the same problem.
    Try to add the line \ \ So InterFrame (Cores = 4) would turn into InterFrame (Cores = 4, GPU = true) \ \
    And add in the missing plug-ins from SVP, and somewhere – \ \ InterFrame2.avsi \ \

  26. My problem is that I get stuck at over 99% when there’s just 10 seconds left. There are no errors at the log and the last entry is “Encoding started”. I tried using InterFrameGUI and it’s the same result, stuck with just 10 seconds to go. Any help would be appreciated. Thanks.

  27. Thank you works great here!!

  28. This is great! Only problem is, the Gpu=true doesn’t seem to be working for me. There is no load on my GPU, 100% load goes onto my CPU. Is there something else I need to do to get this to work?

  29. Mine keeps getting stuck near 90%-ish percent after starting the video creation as well.

  30. I convert mkv 23.976 fps to mkv 59.94 fps without any problem. But after using mkvmerge, when it adds audio tracks, frame rate becomes 59.88 fps. That makes me confused and not only me. My friends too. I attempted to add original dts tracks and converted to ac3. Result is the same. Mediainfo says Frame rate: 59.880 fps and Original frame rate: 59.940 fps. What does it mean ? Is that a bag of mkvmerge or Mediainfo ? Please, give me any reply.

  31. I have the same problem as Arayoth. The Gpu=true doesn’t seem to load my GPU. There is no load on my GPU, 100% load goes onto my CPU. Is there something else I need to do to get this to work? My proc is i5-3470 and GPU GTX650.

  32. Hello! I would like to convert 25fps video to 50fps. Am I right to use the line InterFrame(NewNum=50000, NewDen=1001, Cores=4) in script? What does it mean a parameter NewDen=1001 ? I see it is constant in many variants.

  33. I was able to download MeGUI jsut fine. Cut and pasted in the script. But after I chose the video I wanted I used the “Preview AVS script” button and got this error.

    AviSynth script error:
    Script error: expected a , or) ((null)), line 14, column 0)

    If it helps this is what the MeGUI script I’m using looks like.
    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”)
    LoadPlugin(“C:\Program Files (x86)\K-Lite Codec Pack\Filters\Haali\avss.dll”)
    dss2(“video.flv”, fps=25.000).AssumeFPS(25,1).ConvertToYV12()
    SetMTMode(2)
    #deinterlace
    #crop
    #denoise
    #resize
    InterFrame(Cores=4

  34. SubJunk

    July 28, 2013 at 12:41 pm

    @Utkarsh: Are you using CRF encoding with x264?

  35. SubJunk

    July 28, 2013 at 12:42 pm

    @nelsontl69: That’s a codec problem. I fixed it by replacing all codec packs with K-Lite Mega.

  36. SubJunk

    July 28, 2013 at 12:43 pm

    @Arayoth: If it’s a newer GPU it may only need less than 1% of its power to convert so it may not show up in a monitoring application

  37. SubJunk

    July 28, 2013 at 12:45 pm

    @jeffro: It’s a codec thing, I fixed it on my machine by using K-Lite Mega and uninstalling all others

  38. SubJunk

    July 28, 2013 at 12:46 pm

    @Kirill: I think it is a bug in MediaInfo. Don’t worry about it πŸ™‚ As for the GPU, it may just be using less than 1% of the GPU.

  39. SubJunk

    July 28, 2013 at 12:47 pm

    @Ivan: With InterFrame, 25fps is automatically converted to 50fps, so just use InterFrame(Cores=4) πŸ™‚

  40. SubJunk

    July 28, 2013 at 12:48 pm

    @sportbilly: There is a missing bracket on the last line πŸ™‚

  41. Hi,

    I have a X79 PC running a E5-2687W with 16GB ram. My script looks like the following:

    Setmemorymax(4096)
    SetMTMode(3,8)
    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)

    Is this OK?

    The resultant 1080i converted movie is excellent. However I noticed that 5 frames from somewhere in the movie were inserted at the end. The length of the movie is 59:36:17 but the resultant has length 59:36:39. How can I correct this? Thanks.

  42. SubJunk

    August 26, 2013 at 9:41 am

    @CC: You could try changing SetMemoryMax to 512. There is no advantage in using a higher number and it usually improves stability to use a lower one.
    You could also try using 4 cores instead of 8.

  43. Hi,

    Thanks for your reply. The CPU now doesn’t run with 100% workload and is cooler and thus more stable.

    But the problem of adding 1,3 or 5 frames randomly at the end of the converted 60fps film still persists. The random frames are not a repetition of the last few frames but may be a frame a fraction of a second ahead. That becomes annoying.

    Can the script be further improved to avoid the additon of random frames at the end? Say, if you have a film of 1 hour 20minutes 21 seconds and 10 frames long, the script could limit its new length to 1 hour 20minutes 21 seconds and 20 frames?

    Thanks again.

    Best,
    CC

  44. I get an error message that tells me there is a problem with line 4. Can anybody help me out please?

  45. SubJunk

    October 18, 2013 at 11:15 am

    @Armando Martinez Can you paste your script here so I can see what line 4 is?

  46. First, I’m sorry for my English. im not good with this.
    Once again, thank you Mr.SubJunk…
    it start when my friend told me that he want watching all 60fps on his tv, and asked me to try your great tuts here.
    It`s been a whole 20 hours for achieved this successful on my case…
    i got a lot of AviSynth errors at first.
    install and uninstalled things again and again…since the video that your attached in here so great…so i keep tryin to search whats wrong on my case.

    after a long trial and errors, it became this successful when i not update MeGui first..
    so, after installing MeGui..i Close it, and copy the tools folder first to the destination folder installed.(in my case, i wont update anything first) after that…. I Open MeGui again, and update, after update on the first time, MeGui will restart. after restart, MeGui told me that “1 component still missing, do you want to search online?” choose Yes, and update again, overwrite anything.

    then voila…after that…your script and details tutorial working like a charm…
    Thank You.

  47. Hi,

    I’ve been converting mp4 HD movies to 60FPS for about a month now, and the software works like a charm. This is absolutely superb. So thank you very much for all the work you put into this. Great job !

    I have a question regarding DRM-protected files. I’m not sure it has been addressed already. If it has I missed it and apologise for bringing it up again. When I try to convert one of those DRM files, I am told that I don’t have the right filters installed to carry out the task. QUESTION: Is there a way of configuring MeGui to convert DRM files ? Those are all files for which I have keys, by the way. If I could convert those files directly, it would save me all the time needed to convert them to mp4 first.

    Thank you,

    RL

  48. Each time that I click “Queue” to begin converting the video file, a 0x7e error comes up telling me that there’s a problem with the script in line 4. I’m incredibly tech savvy, so I’m pretty clueless as what to do at this point. Any solutions?

Leave a Reply

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

© 2023 Spirton

Theme by Anders NorénUp ↑