chrisneal
7th April 2010, 05:37
Hi all.
Wow, I really thought I could figure this out from the various stickies in this thread, but so far, I have not been able to get it right :( Very frustrating!
I have two pieces of footage that I'm working with:
a DV avi file that was shot in 4:3, 720x480, with a PAR of 0.9091
a DV avi file that was shot in 16:9, 720x480 with a PAR of 1.2121
I would like to convert the 4:3 to 16:9 so they "match".
I am using Avisynth and VirtualDubMod to achieve this conversion. I grabbed the script from the sticky, and it worked wonderfully, but it gave me a PAR of 1 :S
Here is the original script:
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\convolution3d.dll")
DirectShowSource("C:\test.avi")
Crop(0,60,0,-60)
SeparateFields()
BicubicResize(720,240)
ConverttoYUY2()
# This kept giving me a 'script not found error'
# 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()
This gave me a file that was 720x240 with a PAR of 1.
Ok, so I started trying to figure out different crops and resizes to get what I wanted:
Crop(0,60,0,-60)
BicubicResize(720,480)
Gave me: 720x480, PAR of .9091
Crop(0,8,0,-8)
BicubicResize(720,480)
Gave me: 720x480, PAR of .9091
Crop(0,120,0,-120)
BicubicResize(720,480)
Gave me: 720x480 PAR of .9091
GAH! Can someone please help me out here? What do I need to crop/resize to in order to get a 720x480, 16x9, 1.2121?
I have a serious case of tired head from thinking about this :)
When I overlay the two avis on top of each other in Adobe Premiere CS4, the converted video is the desired height, but it appears to be too short (see attachment).
I am seriously stumped.
Thank you very much for your time.
Chris
Wow, I really thought I could figure this out from the various stickies in this thread, but so far, I have not been able to get it right :( Very frustrating!
I have two pieces of footage that I'm working with:
a DV avi file that was shot in 4:3, 720x480, with a PAR of 0.9091
a DV avi file that was shot in 16:9, 720x480 with a PAR of 1.2121
I would like to convert the 4:3 to 16:9 so they "match".
I am using Avisynth and VirtualDubMod to achieve this conversion. I grabbed the script from the sticky, and it worked wonderfully, but it gave me a PAR of 1 :S
Here is the original script:
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\convolution3d.dll")
DirectShowSource("C:\test.avi")
Crop(0,60,0,-60)
SeparateFields()
BicubicResize(720,240)
ConverttoYUY2()
# This kept giving me a 'script not found error'
# 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()
This gave me a file that was 720x240 with a PAR of 1.
Ok, so I started trying to figure out different crops and resizes to get what I wanted:
Crop(0,60,0,-60)
BicubicResize(720,480)
Gave me: 720x480, PAR of .9091
Crop(0,8,0,-8)
BicubicResize(720,480)
Gave me: 720x480, PAR of .9091
Crop(0,120,0,-120)
BicubicResize(720,480)
Gave me: 720x480 PAR of .9091
GAH! Can someone please help me out here? What do I need to crop/resize to in order to get a 720x480, 16x9, 1.2121?
I have a serious case of tired head from thinking about this :)
When I overlay the two avis on top of each other in Adobe Premiere CS4, the converted video is the desired height, but it appears to be too short (see attachment).
I am seriously stumped.
Thank you very much for your time.
Chris