Log in

View Full Version : How to identify clips while comparing them?


fabiospark
12th October 2010, 19:47
I'm using this little script to compare different MVTools settings. Is there a simple way to identify the clips - maybe with a superimposed a, b, c, or d to be sure which is which?

a=avisource("Fabio slomo 1.5 blksize 4.avi")
b=avisource("Fabio slomo 1.5 blksize 16.avi")
c=avisource("Fabio slomo 1.5 blksize 8.avi")
d=avisource("Fabio slomo 1.5 blksize 16.avi")
Stackvertical(StackHorizontal(a,b),StackHorizontal(c,c))


Thanks.

Gavino
12th October 2010, 20:54
Is there a simple way to identify the clips - maybe with a superimposed a, b, c, or d to be sure which is which?
a=avisource("Fabio slomo 1.5 blksize 4.avi").Subtitle("a")
etc

fabiospark
12th October 2010, 21:27
Thank you.