2022-06-23, 05:08 PM
(2022-06-21, 05:00 PM)zoidberg Wrote: @alleycat,
It's possible to combine multiple calls into a single line, as opposed to over a number of lines:
Code:source("source").tfm.tdecimate.pointresize(720,480).showframenumber.trim(start,end)
In this instance you would only use parentheses to adjust filter parameters like edit points or options within filters like resizing, field order etc. An example script would be
Code:a=source("bluray").pointresize(720,480)
b=source("laserdisc").tfm.tdecimate
stackvertical(a,b)
Thanks - makes perfect sense. I was doing something like this:
Code:
a=source(("bluray"), pointresize(720,480))
So no wonder I was getting errors!