View Single Post
Old 11th March 2010, 11:54   #2  |  Link
Gavino
Avisynth language lover
 
Join Date: Dec 2007
Location: Spain
Posts: 3,431
Quote:
Originally Posted by jeremy33 View Post
Code:
MT("spline64resize(1920, last.height)",4)
MT("spline64resize(last.width, newHeight)",4, splitvertical=true)
When resizing with MT, you should use the overlap parameter to avoid edge effects where the frame is split. For spline64Resize, an overlap of 4 pixels would be appropriate.
MT("spline64resize(1920, last.height)", 4, 4)

But why use the MT function if you are already using SetMTMode?
Gavino is offline