ou8thisSN
31st May 2005, 03:10
okay, i have a DV AVI NTSC file that is 720x 480 that was recorded in 4:3 format. I want to crop and addborders to convert it to 16:9 format. using the crop feature, i cropped 60 pixels from the top and bottom of each image, and in the AddBorders function, i added 60 pixels. I am assuming that I just need to fill the pixels that i removed with black ones right?
anyway this crashes CCE\Avisynth\Vdub. I am doing something wrong but I dont know what.
Like i said, all i want to do is convert 4:3 720 x 480 to 16:9 720x 480 with the black borders that you see on DVDs...
Please help if you can, i want to start encoding tonight if at all possible.
Thanks a lot for helping out a newB.
This was my original script with the crop and resize:
AviSource("E:\SWD_tape1\CCE Product\ActualTest.avi")
Crop(0,60,0,-60)
SeparateFields()
bicubicresize(720,240)
ConverttoYUY2()
ReInterpolate411()
odd=SelectOdd.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
evn=SelectEven.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
Interleave(evn,odd)
Weave()
DoubleWeave.SelectOdd()
here is my script after it was suggested I add black borders instead of resizing and "zooming" to fill in for the pixels removed before:
AviSource("E:\SWD_tape1\CCE Product\ActualTest.avi")
Crop(0,60,0,-60)
SeparateFields()
AddBorders(0,60,0-60)
ConverttoYUY2()
ReInterpolate411()
odd=SelectOdd.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
evn=SelectEven.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
Interleave(evn,odd)
Weave()
DoubleWeave.SelectOdd()
I took out the line about BicubicResize, I am assuming I need to?
anyway this crashes CCE\Avisynth\Vdub. I am doing something wrong but I dont know what.
Like i said, all i want to do is convert 4:3 720 x 480 to 16:9 720x 480 with the black borders that you see on DVDs...
Please help if you can, i want to start encoding tonight if at all possible.
Thanks a lot for helping out a newB.
This was my original script with the crop and resize:
AviSource("E:\SWD_tape1\CCE Product\ActualTest.avi")
Crop(0,60,0,-60)
SeparateFields()
bicubicresize(720,240)
ConverttoYUY2()
ReInterpolate411()
odd=SelectOdd.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
evn=SelectEven.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
Interleave(evn,odd)
Weave()
DoubleWeave.SelectOdd()
here is my script after it was suggested I add black borders instead of resizing and "zooming" to fill in for the pixels removed before:
AviSource("E:\SWD_tape1\CCE Product\ActualTest.avi")
Crop(0,60,0,-60)
SeparateFields()
AddBorders(0,60,0-60)
ConverttoYUY2()
ReInterpolate411()
odd=SelectOdd.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
evn=SelectEven.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
Interleave(evn,odd)
Weave()
DoubleWeave.SelectOdd()
I took out the line about BicubicResize, I am assuming I need to?