View Single Post
Old 15th July 2011, 23:18   #2  |  Link
Gavino
Avisynth language lover
 
Join Date: Dec 2007
Location: Spain
Posts: 3,431
Quote:
Originally Posted by Jonaldinho View Post
Do i need .AssumeBFF() after each loaded video? I assumed because it was on the same line it wouldn't matter.
As you've written it, AssumeBFF only applies to Video2 - in effect, the '.' binds more tightly than the '+'.
You could have written
vid=(DirectShowSource(...1...)+DirectShowSource(...2...)).AssumeBFF()
or
vid=DirectShowSource(...1...).AssumeBFF()+DirectShowSource(...2...).AssumeBFF()
but since BFF is the default, you don't really need it anyway.
__________________
GScript and GRunT - complex Avisynth scripting made easier

Last edited by Gavino; 15th July 2011 at 23:49. Reason: remove spurious bracket
Gavino is offline   Reply With Quote