MickeyNBK
16th January 2006, 03:26
I have some videos that are 624x352 Xvid avis. I want to put these on DVD but when I encode them come out stretched to wide. I'm attempting to resize and add black borders. I used FitCD to create my Avisynth script. My goal is to have a 16:9 video that displays properly on my 4:3 tv.
Here is my script so far:
LoadPlugin("C:\Program Files\DIKO\avisynth plugins\blockbuster.dll")
LoadPlugin("C:\Program Files\DIKO\avisynth plugins\Convolution3DYV12.dll")
Import("C:\Program Files\DIKO\avisynth plugins\addaudio.avsi")
# -= AviSynth v2.5.6.0 script by FitCD v1.2.8 =-
AVISource("C:\officejokes.avi")
Blockbuster(method="noise",detail_min=1,detail_max=3,variance=0.1,seed=1)
Convolution3D(1, 6, 12, 6, 8, 2.8, 0)
BicubicResize(688,400,0,0.6,2,0,620,352)
AddBorders(16,40,16,40)
#Trim(0,32337).FadeOut(150)
AddAudio()
Converttoyuy2()
Here is my script so far:
LoadPlugin("C:\Program Files\DIKO\avisynth plugins\blockbuster.dll")
LoadPlugin("C:\Program Files\DIKO\avisynth plugins\Convolution3DYV12.dll")
Import("C:\Program Files\DIKO\avisynth plugins\addaudio.avsi")
# -= AviSynth v2.5.6.0 script by FitCD v1.2.8 =-
AVISource("C:\officejokes.avi")
Blockbuster(method="noise",detail_min=1,detail_max=3,variance=0.1,seed=1)
Convolution3D(1, 6, 12, 6, 8, 2.8, 0)
BicubicResize(688,400,0,0.6,2,0,620,352)
AddBorders(16,40,16,40)
#Trim(0,32337).FadeOut(150)
AddAudio()
Converttoyuy2()