Hi,
I was just curious as to whether there were any ways ic ould speed up the encoding of my 1080i raw captrue streams to xvid - the current method i have at the moment works ok - i was just wondering whether there were any speed imporvements one could recommend, in terms of the avs script.
I currently use the following:
For example i heard perhaps if i convert the colour space to YV12 or somethign like that, it coudl speed things up?Code:LoadPlugin(\"C:\AVISYNTH\DGDecode.dll\") LoadPlugin(\"C:\AVISYNTH\TIVTC.dll\") LoadPlugin(\"C:\AVISYNTH\UnDot.dll\") mpeg2source(\"c:\test.d2v\") crop(0,0,1920,1080) HorizontalReduceBy2() LanczosResize(640,Height) TFM().TDecimate() VerticalReduceBy2() LanczosResize(Width,352) Undot()
Any suggestions would be greatly appreciated.
Thanks in advance!
		
			+ Reply to Thread
			
		
		
		
			
	
	
				Results 1 to 2 of 2
			
		- 
	
- 
	Mpeg2Source() should be putting out YV12 already. You can use Info() to verify. 
 
 I'd probably use a BilinearResize() instead of HorzontialReduceBy2().LanczosResize(). The latter will probably be over sharp (moire artifacts, halos, buzzing edges). Same for the vertical resize. Yeah, I know, people love over sharp video.
 
 I'm not sure Undot will be doing much of anything after all that downsizing.
 
 I hope this a telecined film source, not interlaced video.
 
 If the video isn't real sharp you may be able to get away with:
 
 mpeg2source(\"c:\test.d2v\")
 crop(0,0,1920,1080)
 SeparateFields()
 SelectEven()
 BilinearResize(640,352)
 TDecimate()Last edited by jagabo; 12th Sep 2010 at 08:36. 
Similar Threads
- 
  Software titles that speed-up processing?By snafubaby in forum Video ConversionReplies: 3Last Post: 28th Mar 2011, 23:34
- 
  Camcorder: buy 1080i or 1080p? Final Cut Express only does 1080iBy adrien23 in forum Camcorders (DV/HDV/AVCHD/HD)Replies: 13Last Post: 12th Nov 2010, 06:37
- 
  720p vs 1080i - which is best?By snadge in forum DVB / IPTVReplies: 19Last Post: 31st Aug 2009, 19:19
- 
  1080i to what ??By David97 in forum Video ConversionReplies: 3Last Post: 4th Dec 2007, 08:55
- 
  Is 1080i thru Component the same video quality as 1080i thru HDMI?By Denvers Dawgs in forum DVB / IPTVReplies: 27Last Post: 13th Jul 2007, 17:25


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

 Quote
 Quote