Log in

View Full Version : Avisynth gives Access Violation error when resizing 504x368


rs008f
7th December 2003, 07:25
Here's the script I'm using.

AviSource("C:\Movie.avi",true,"YUY2")
BicubicResize(688,448,0,0.6,0,0,504,368)
AddBorders(16,16,16,16)

I tried using "false" to eliminate the audio but it didn't help.

This is the actual error.
Avisynth: caught an excess violation at 0x77f82e87
attempting to read from 0x00000000

It's a Divx 3 video.

Wilbert
7th December 2003, 19:35
Try

AviSource("C:\Movie.avi")
BicubicResize(688,448,0,0.6,0,0,504,368)
AddBorders(16,16,16,16)

Your DivX3 will be opened as RGB32 (I think). Might be unrelated though :confused:

cweb
8th December 2003, 19:58
I would do avisource("...").ConvertToYV12() usually...