View Single Post
Old 14th September 2009, 00:04   #424  |  Link
Gavino
Avisynth language lover
 
Join Date: Dec 2007
Location: Spain
Posts: 3,431
You're setting b by trimming the result of the first SRestore.
Try this:
Code:
a=Trim(0,100000).Yadif(Mode=1,Order=1).SRestore()
b=Trim(100001,180000).Yadif(Mode=1,Order=1).SRestore()
a+b
Better still would be:
Code:
Yadif(Mode=1,Order=1).SRestore()
Trim(0, ...)+Trim(..., ...)
but you would then need to use different frame numbers, relative to the result of SRestore.

But why split in two if the two parts are consecutive?

Last edited by Gavino; 14th September 2009 at 00:06.
Gavino is offline   Reply With Quote