PDA

View Full Version : newbie: appending in AVISynth


DaveQB
12th April 2003, 19:18
i have spent all night (4am) looking for a script doing this aswell as trying my own


Ulead's Cool 3D, when using huffy compression, can only produce RGB24

and my capture's are done in YUY2 (space restrictment in full res)
and i need to append the Ulead Cool files to the begining of them


whats the script for this ???

(openning the cool 3D in an AVS saying converttoYUY2 doesnt allowing appending in VD)

thanx guys

lamer_de
12th April 2003, 19:51
clip1=Avisource(RGBSource.avi).converttoyuy2()
clip2=AviSource(YUY2Source.avi)
clip3=clip1++clip2
return clip3

This should let you load both clips already merged in vdub

CU,
lamer_de

DaveQB
27th April 2003, 21:11
thanx heaps mate

i thought i had replied to this :eek: oops!

works a treat
i tried playing with using variables like that but didnt want to work for me,


thanx again