Originally posted by Bruce Davis
View Post
function named "Convert" it´s because there is a space error like this Convert ToYV12() but it must be like this ConvertToYV12()
Code:
ImageSource("D:\Super8MOVIE\image%d.tiff",start=1,end=100,fps=18).ConvertToYV12()
Code:
imagewriter(file="D:\movie\image%d.tiff",start=0,end=0,type="tiff")
i did notice that when i did copy and paste the script to this forum i did get a lot of space errors do not know why
change Return sprocketAlign(film,8,100) to
this
Code:
Return sprocketAlign(film,8,100).ConvertToRGB24().imagewriter(file="D:\movie\image%d.tiff",start=0,end=0,type="tiff")
image%d.tiff to image%d.jpg
more info here about imagewriter avisynth http://avisynth.nl/index.php/ImageWriter
Comment