Hi ****,
with the gopro camera I have shoot a little attached video that seems a little jerky because of the 25 fps progressive.
I wonder: is there a way, in avisynth (or other programs) to have a more smooth video?
thanks
		
			+ Reply to Thread
			
		
		
		
			
	
	
				Results 1 to 6 of 6
			
		- 
	
- 
	Motion interpolation techniques can work well with video that doesn't have complex or too fast motion. 
 
 https://forum.videohelp.com/threads/329754-Help-deinterlacing-IVTC-ing-VHS-material-con...=1#post2042689
 
 You'll need mv_tools2 to use that function. It generates noticeable artifacts with your video though.
- 
	576i25 TFF: 
 
 There WILL be artifacts.Code:import("C:\Program Files (x86)\AviSynth 2.5\plugins\DoubleFPS2.avs") ffVideoSource("gopro.mp4") BilinearResize(720,576) DoubleFPS2() AssumeTFF().SeparateFields().SelectEvery(4,0,3).Weave()Last edited by jagabo; 1st Sep 2014 at 10:36. 
- 
	You can try adding motion blur with QTGMC to create 25 fps video that flickers a little less. 
 
 
 Code:ffVideoSource("gopro.mp4") BilinearResize(720,576) QTGMC( Preset="Fast", InputType=1, ShutterBlur=1, ShutterAngleSrc=30, ShutterAngleOut=360)
- 
	If you didn't mind the speed-up, you could: ScottCode:AssumeFPS(pal_double) 


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