sparskter
3rd July 2005, 18:31
My original post (without movie name)
Hello!
Well I tried a clean solution: uninstalled avisynth, installed again(2.5.5) and I put on plugins folder, only:
grip.dll
And here is my script:
movie="D:\ANY_movie.avi"
myoverscan=2
tte=false
ttd=false
width=720
height=480
GripCrop(width,height,overscan=myoverscan,source_anamorphic=false,dest_anamorphic=false)
GripSize(resizer="LanczosResize")
GripBorders()
Unfortunatley, avisynth is reporting me the follow:
http://img265.imageshack.us/img265/3161/vduberror6ha.th.png (http://img265.imageshack.us/my.php?image=vduberror6ha.png)
Well I found the solution:
movie="D:\ANY_movie.avi"
AVISource(movie,false)
AssumeFPS(29.97)
myoverscan=2
tte=false
ttd=false
width=720
height=480
GripCrop(720,480,overscan=myoverscan,source_anamorphic=false,dest_anamorphic=false)
GripSize(resizer="LanczosResize")
GripBorders()
AVISource(movie,false) (was missing this)
AssumeFPS(29.97) (optional, but I need this)
Hello!
Well I tried a clean solution: uninstalled avisynth, installed again(2.5.5) and I put on plugins folder, only:
grip.dll
And here is my script:
movie="D:\ANY_movie.avi"
myoverscan=2
tte=false
ttd=false
width=720
height=480
GripCrop(width,height,overscan=myoverscan,source_anamorphic=false,dest_anamorphic=false)
GripSize(resizer="LanczosResize")
GripBorders()
Unfortunatley, avisynth is reporting me the follow:
http://img265.imageshack.us/img265/3161/vduberror6ha.th.png (http://img265.imageshack.us/my.php?image=vduberror6ha.png)
Well I found the solution:
movie="D:\ANY_movie.avi"
AVISource(movie,false)
AssumeFPS(29.97)
myoverscan=2
tte=false
ttd=false
width=720
height=480
GripCrop(720,480,overscan=myoverscan,source_anamorphic=false,dest_anamorphic=false)
GripSize(resizer="LanczosResize")
GripBorders()
AVISource(movie,false) (was missing this)
AssumeFPS(29.97) (optional, but I need this)