Log in

View Full Version : imagesequence 29.97 fps problem


3dfiction
30th March 2006, 10:43
when i set up imagesequence fps=29.97 i had a this error

"fps to imagesequence had the wrong type"

my script is

LoadPlugin("C:\Program Files\Accessories\AviSynth 2.5\plugins\imagesequence.dll")

ImageSequence("C:\test%4.4d.bmp",start=0000,stop=0540,fps=29.97)

when i use 30 or any integer number work normal. but i need for ntsc fps

any idea what can i do for this ?

thanks,

serdar camlica

Wilbert
30th March 2006, 11:54
Use ImageSource. If you have the same problem try:


ImageSource("C:\test%4.4d.bmp",start=0000,end=0540)
AssumeFPS(29.97)

3dfiction
31st March 2006, 09:36
thank you. solved with imagesource and without assumefps.

ImageSource("C:\test%4.4d.bmp",start=0000,end=0540,fps=29.97)

i didnt think imagesource can read image sequences, becouse when i saw external plugin exist for imagesequencing i thought imagesource is just for 1 image (for repeat etc.)

i dont know now also what is advantage in imagesequence plugin

thanks again

Wilbert
31st March 2006, 09:56
i dont know now also what is advantage in imagesequence plugin
None. ImageSource is based on imagesequence.