Akatsuker
12th May 2008, 20:16
DGDecode_mpeg2source("E:\mortus\mainDVDvideo.d2v",info=3)
ColorMatrix(hints=true)
crop( 0, 2, 0, 0)
lanczosresize(720,400)
newvideo = directshowsource("E:\mortus\midvideo.avi")
a = trim(0,80203)
b = trim(80338,81023)
return a + newvideo + b
The "newvideo" is an AVI huffyuv, no audio, five seconds length/133 frames/23.976fps; All I want to do is to change the frames from the d2v for the AVI ones.
When I try to do that, my AVSP returns an error:
"SPLICE: Video formats don't match"
What am I supposed to do? Can you help me?
ColorMatrix(hints=true)
crop( 0, 2, 0, 0)
lanczosresize(720,400)
newvideo = directshowsource("E:\mortus\midvideo.avi")
a = trim(0,80203)
b = trim(80338,81023)
return a + newvideo + b
The "newvideo" is an AVI huffyuv, no audio, five seconds length/133 frames/23.976fps; All I want to do is to change the frames from the d2v for the AVI ones.
When I try to do that, my AVSP returns an error:
"SPLICE: Video formats don't match"
What am I supposed to do? Can you help me?