Back Forum Reply New

imagesequence 29.97 fps problem

when i set up imagesequence fps=29.97 i had a this error

quot;fps to imagesequence had the wrong typequot;

my script is

LoadPlugin(quot;C:\Program Files\Accessories\AviSynth 2.5\plugins\imagesequence.dllquot;)

ImageSequence(quot;C:\test%4.4d.bmpquot;,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

Use ImageSource. If you have the same problem try:Code:
ImageSource(quot;C:\test%4.4d.bmpquot;,start=0000,end=0540)
AssumeFPS(29.97)thank you. solved with imagesource and without assumefps.

ImageSource(quot;C:\test%4.4d.bmpquot;,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

i dont know now also what is advantage in imagesequence plugin

None. ImageSource is based on imagesequence.
¥
Back Forum Reply New