dosdan
24th May 2006, 11:42
I'm comparing two MPEG-2 encoders using the following script
LoadPlugin("G:\Avi2Dvd\Programs\Dgmpgdec\DGDecode.dll")
left=MPEG2Source("y:\Gaitner\Ryman_tmpegenc.d2v")
right=MPEG2Source("y:\Gaitner\ryman_hcenc.d2v")
width=left.width()/2
height=left.height()
left=crop(left,0,0,width,height)
right=crop(right,width,0,width,height)
StackHorizontal(left.subtitle("TMPEGenc"),right.subtitle("HCenc"))
How can I add a thin black, white or coloured vertical separator line down the middle to indicate where the boundary is between the two sides/clip-halves?
LoadPlugin("G:\Avi2Dvd\Programs\Dgmpgdec\DGDecode.dll")
left=MPEG2Source("y:\Gaitner\Ryman_tmpegenc.d2v")
right=MPEG2Source("y:\Gaitner\ryman_hcenc.d2v")
width=left.width()/2
height=left.height()
left=crop(left,0,0,width,height)
right=crop(right,width,0,width,height)
StackHorizontal(left.subtitle("TMPEGenc"),right.subtitle("HCenc"))
How can I add a thin black, white or coloured vertical separator line down the middle to indicate where the boundary is between the two sides/clip-halves?