PDA

View Full Version : Script for output timeline


yup
4th December 2007, 20:22
Hi folk.
Please advice script which out to screen timeline, reduced size frame
AVISource("aaa.avi")
clip=ReducedBy2().ReducedBy2().ReducedBy2()
StackHorizontal(clip(framen),clip(framen+1),....)
With kind regards yup.

IanB
4th December 2007, 21:06
AVISource("aaa.avi")
N0=PointResize(Width()/8, Height()/8)
N1=N0.DeleteFrame(0)
N2=N1.DeleteFrame(0)
N3=N2.DeleteFrame(0)
N4=...
StackHorizontal(N0, N1, N2, N3, N4, ...)ReduceBy2() is a pretty quick filter but it is no quicker than the normal resizers, which are heavily optimised, just use the resizer.

If the aliasing from PointResize() is objectionable, try GaussResize() or Spline16Resize().

yup
5th December 2007, 05:21
IanB!
:thanks:
yup.