zilog jones
18th May 2005, 23:48
Here's a script:
a = ImageSource("h:\video\tc576\1.tif", end = 300, fps=25)
b = ImageSource("h:\video\tc576\2.tif", end = 300, fps=25)
c = ImageSource("h:\video\tc576\3.tif", end = 300, fps=25)
d = ImageSource("h:\video\tc576\4.tif", end = 300, fps=25)
e = ImageSource("h:\video\tc576\5.tif", end = 300, fps=25)
f = ImageSource("h:\video\tc576\6.tif", end = 300, fps=25)
g = ImageSource("h:\video\tc576\7.tif", end = 300, fps=25)
h = ImageSource("h:\video\tc576\8.tif", end = 300, fps=25)
i = ImageSource("h:\video\tc576\9.tif", end = 300, fps=25)
j = ImageSource("h:\video\tc576\10.tif", end = 300, fps=25)
all = (a+b+c+d+e+f+g+h+i+j)
ConvertToYV12(all)
return(all)
Yeah, I know I could have done ImageSource("h:\video\tc576\%d.tif", 1, 10, 25), but when I did changeFPS afterwards it was doing funky things - each image was displayed twice as long as the previous one, or something screwy). But I don't think I'm doing the stuff afterwards right, because that ConvertToYV12 doesn't do anything - and if I try putting anything else there it doesn't do anything either. What am I doing wrong?
a = ImageSource("h:\video\tc576\1.tif", end = 300, fps=25)
b = ImageSource("h:\video\tc576\2.tif", end = 300, fps=25)
c = ImageSource("h:\video\tc576\3.tif", end = 300, fps=25)
d = ImageSource("h:\video\tc576\4.tif", end = 300, fps=25)
e = ImageSource("h:\video\tc576\5.tif", end = 300, fps=25)
f = ImageSource("h:\video\tc576\6.tif", end = 300, fps=25)
g = ImageSource("h:\video\tc576\7.tif", end = 300, fps=25)
h = ImageSource("h:\video\tc576\8.tif", end = 300, fps=25)
i = ImageSource("h:\video\tc576\9.tif", end = 300, fps=25)
j = ImageSource("h:\video\tc576\10.tif", end = 300, fps=25)
all = (a+b+c+d+e+f+g+h+i+j)
ConvertToYV12(all)
return(all)
Yeah, I know I could have done ImageSource("h:\video\tc576\%d.tif", 1, 10, 25), but when I did changeFPS afterwards it was doing funky things - each image was displayed twice as long as the previous one, or something screwy). But I don't think I'm doing the stuff afterwards right, because that ConvertToYV12 doesn't do anything - and if I try putting anything else there it doesn't do anything either. What am I doing wrong?