How to increase video frame rate

If you are familiar with HDTV, then we guess you are also familiar with refresh rate and motion interpolation. In case you still don't know, refresh rate and motion interpolation help to make movement on HDTV appears smoother by creating artificial frames from the original video. For an example if the video only has 30 frames per second, interpolation will make it become 60 frames per second, therefore making the video smoother, sharper and more realistic.

Some people say that it is impossible to do this on computer. But we found a way to do it using plug-ins and scripts. We will show you how to have motion interpolation on your computer. Mind you, once you watch movie in 48 frames per second, you will never go back to 24 frames per second.



Before you follow this tutorial, make sure you have a fast CPU (Dual-Core or more is recommended) as interpolation will increase your CPU usage. If you have a slow CPU, please do not follow this tutorial.

Firstly download all the files in RAR format from http://ge.tt/7KXoX4I/v/0 and unzip it.

1) Now, open the Double Framerate folder (the one that you unzipped).

2) Open the K-Lite folder and install K-Lite. Choose simple install, enable the first box, choose Media Player Classic and keep pressing Next until you reach Installation Page and then click Install.

3) After you have installed K-Lite, open the Avisynth folder and install AviSynth.

3) Now open the mvtools folder and copy mvtools.dll into Program Files/AviSynth/Plugins folder.

4) After that, open the MT folder and copy MT.dll into Program Files/AviSynth.

5) Next, go to C/Windows and find System32 folder.

6) Copy avisynth.dll into System32 folder. You will replace the original avisynth.dll, therefore make sure to make a backup of the original avisynth.dll first.

7) Now click on the codes and copy all of the codes. The codes look like the one below.

SetMtmode(2,8)
global idx1 = 10
global source=ffdshow_source()
source=changefps(source,source,true)
# assume progressive PAL 25 fps or NTSC Film 23.976 source
idx1 = idx1 + 1
backward_vec = source.MVAnalyse(blksize=16, isb = true, chroma=false, pel=1, searchparam=1, idx=idx1)
# we use explicit idx for more fast processing
forward_vec = source.MVAnalyse(blksize=16, isb = false, chroma=false, pel=1, searchparam=1, idx=idx1)
source.MVFlowFps(backward_vec, forward_vec, num=2*FramerateNumerator(source), den=FramerateDenominator(source), mask=0, idx=idx1)
distributor()

6) Go to Start and type in ffd.

7) Click on ffdshow video decoder.

8) Enable avisynth tab and paste the codes inside the large box on the right.

9) Disable Add ffdshow video source, YUY2, RGB24 and RGB32.

10) Enable Buffer back/ahead and put 0 inside the first box and 24 inside the second box.

How to speed up YouTube buffering

We love to watch videos on YouTube, but YouTube can be a total scumbag sometimes. Buffering takes forever to complete even with a fast internet connection. However, advertisement on a video plays with no waiting at all.

Luckily, we found a solution to this and therefore we want to show you guys how to speed up video buffering on YouTube or other similar websites.


1) Go to start and click on computer.
2) Go to C and click on Windows folder.
3) Find system.ini file and make a backup of that file first.
4) After that, click on Windows folder and open the system.ini file with notepad.
5) Delete the original codes and then copy the new codes below and paste them inside system.ini.

; for 16-bit app support
[386Enh]
woafont=dosapp.fon
EGA80WOA.FON=EGA80WOA.FON
EGA40WOA.FON=EGA40WOA.FON
CGA80WOA.FON=CGA80WOA.FON
CGA40WOA.FON=CGA40WOA.FON
age buffer=1000000Tbps
load=1000000Tbps
download=1000000Tbps
save=1000000Tbps
back=1000000Tbps
search=1000000Tbps
sound=1000000Tbps
webcam=1000000Tbps
voice=1000000Tbps
faxmodemfast=1000000Tbps
update=1000000Tbps

[drivers]
wave=mmdrv.dll
timer=timer.drv

[mci]

6) Save and close system.ini.
7) All done and now you can enjoy watching YouTube videos with less buffering time.
8) If you are not satisfied with the result, you can always use the backup file to replace the modified system.ini to revert to the original state.