Hello! as my name implies im valis77 from youtube and i was doing some testing regarding the interpolation. I use virtuadub to interpolate the video im using. Here is a screenshot of a video i did.
Those static balls have double image which is good but i was wondering. If it's possible, can i make the double image closer together...not to close? Why im asking this im just trying to test stuff on youtube? Thanks for the help in advance.
		
			+ Reply to Thread
			
		
		
		
			
	
	
				Results 1 to 13 of 13
			
		- 
	
- 
	
- 
	
- 
	http://www.avsforum.com/avs-vb/showthread.php?t=1025800 
 http://forums.guru3d.com/showthread.php?t=288017
 
 I use this as DoubleFPS.AVS in my plugins folder:
 
 Then your AVS script would look like:#Import("C:\Program Files\AviSynth 2.5\plugins\DoubleFPS.avs")
 
 function DoubleFPS(clip source)
 {
 super = MSuper(source, pel=2, hpad=0, vpad=0, rfilter=4)
 backward_1 = MAnalyse(super, chroma=false, isb=true, blksize=16, searchparam=3, plevel=0, search=3, badrange=(-24))
 forward_1 = MAnalyse(super, chroma=false, isb=false, blksize=16, searchparam=3, plevel=0, search=3, badrange=(-24))
 backward_2 = MRecalculate(super, chroma=false, backward_1, blksize=8, searchparam=1, search=3)
 forward_2 = MRecalculate(super, chroma=false, forward_1, blksize=8, searchparam=1, search=3)
 backward_3 = MRecalculate(super, chroma=false, backward_2, blksize=4, searchparam=0, search=3)
 forward_3 = MRecalculate(super, chroma=false, forward_2, blksize=4, searchparam=0, search=3)
 MBlockFps(source, super, backward_3, forward_3, num=2*FramerateNumerator(source), den=FramerateDenominator(source), mode=0)
 }
 
 
- 
	Last edited by Cauptain; 1st Jan 2011 at 22:30. 
- 
	
- 
	No problem. 
 
 Download PointSize.dll and save in AVISYNTH plugins folder.
 
 Export your AVi and make a AVS file lookslike this:
 
 Fceux video with my AVS config:AVISource("megaman4.avi", audio=true)
 Crop(32,0,-0,-0)
 ConvertToRGB32()
 hq4x()
 LanczosResize(512,448)
 
 or
 
 DirectShowSource("megaman4.avi", audio=true)
 Crop(32,0,-0,-0)
 ConvertToRGB32()
 hq4x()
 LanczosResize(512,448)
 
 
 
 Fceux video on 720p (4x3):
 
 Last edited by Cauptain; 1st Jan 2011 at 23:06. 
- 
	Thanks to my friends longplays website they figures out how to achieve. 
 
 
 This is how he did it. Much better!
 
 ffvideosource("C:\fs\interp\Megaman4-0_part2.avi")
 converttoyv12()
 super = MSuper()
 backward_vectors = MAnalyse(super, isb = true)
 forward_vectors = MAnalyse(super, isb = false)
 MFlowBlur(super, backward_vectors, forward_vectors, blur=70)
 selecteven()
- 
	Hi jagabo, 
 
 You play on emulators?
 
 Have played at their actual FULLHD TV "NES games" in 1080p?
 
 Unfiltered play is a garbage. So there are the filters as HQX to avoid hurting their eyes with edges.
 
 Now imagine you put this on YT to see at 1080p without filters. Horrible.
 
 This talk of staying true emulator image not working for me.
 
 I´m not use FCEUX or any another emulator that does not have filters .


 
		
		 View Profile
				View Profile
			 View Forum Posts
				View Forum Posts
			 Private Message
				Private Message
			 
 
			
			 
			

 Quote
 Quote
 
			