mgt
23rd July 2005, 22:10
I have a problem with my AviSynth script which displays "caught access violation at ... reading from ...." I guess you know what I mean. This isn't my first avisynth script at all and I never had such a problem. This is what I'm using:v1 = MPEGSource("myvideo1")
v2 = MPEGSource("myvideo2")
a1 = DirectShowSource("myvideo1", video=false)
a2 = DirectShowSource("myvideo2", video=false)
vid = AudioDub(v1,a1) ++ AudioDub(v2,a2)
ret = vid.LanczosResize(720,458,0,108,478,268).AddBorders(0,60,0,58).ChangeFPS(25)
return retThe source is a .mpg ntsc video. Instead of using DirectShowSource for audio, I also tried MPASource which results in the same error.
Weird is that this error only appears in the encoded material (I'm passing this script to CCE), NOT when just playing the .avs file!
The target format should be PAL 16:9. Anyone got an idea why I get that error?
v2 = MPEGSource("myvideo2")
a1 = DirectShowSource("myvideo1", video=false)
a2 = DirectShowSource("myvideo2", video=false)
vid = AudioDub(v1,a1) ++ AudioDub(v2,a2)
ret = vid.LanczosResize(720,458,0,108,478,268).AddBorders(0,60,0,58).ChangeFPS(25)
return retThe source is a .mpg ntsc video. Instead of using DirectShowSource for audio, I also tried MPASource which results in the same error.
Weird is that this error only appears in the encoded material (I'm passing this script to CCE), NOT when just playing the .avs file!
The target format should be PAL 16:9. Anyone got an idea why I get that error?