1. I have an NTSC 4:3 720x480 capture of a 16:9 widescreen show in letterbox (top & bottom black bars).
2. I captured using my Happague USB-2 card using a CBR at 13000 kps. So I need to reencode regardless of what I plan to do. I will use dgindex along with AVISynth to edit and frameserve to my encoder (CCE-basic or TMPGEnc-Plus).
3. I'd like to convert this capture to true 16:9 widescreen.
4. If I've done my math correctly (please check), the true image should be centered in 720x360 of the 720x480 image. I arrive at this by 480*(.909/1.212) = 360, where .909 and 1.212 are the 4:3 and 16:9, respectively, pixel width/height ratio.
5. Given the correct math above, if I crop the top and bottom by 60 pixels each then I'm left with the true image.
6. Now for my question, should I just then frameserve the cropped 720x360 video to my encoder and let it encode to NTSC 16:9 720x480 widescreen or is there a more correct or easier way?
+ Reply to Thread
Results 1 to 4 of 4
-
-
The numbers are correct but if your capture comes from TV, it is probably interlaced and to prevent unpleasant artifacts, resizing should be performed a special way: either after deinterlacing (this kills half of motion phases in original video) or (better) using the so-called 'smart bob' function - with temporary conversion to double-framerate progressive video. At this stage you crop+resize to target values, then combine fields of resulting video into new interlaced frames and frameserve to encoder. This can be done in AviSynth, I'm sure in couple of posts you'll find a script here ready to use
.
-
You'll need a script like this:
LoadPlugin("path\DGDecode.dll")
LoadPlugin("path\LeakKernelDeint.dll")
MPEG2Source("path\your movie.d2v")
#info()
LeakKernelBob(Order=1)#if your video is TFF, Order=0 if BFF
Crop(0,60,-0,-60)
LanczosResize(720,480)
AssumeTFF()
SeparateFields()
SelectEvery(4,0,3)
Weave()
ConvertToYUY2(Interlaced=True)#for CCE, ConvertToRGB24(Interlaced=True) for TMPGEnc
The script uses external deintelace filter LeakKernelDeint (google it) + MPEG decompressor from package with your DGIndex
use info line (disabled now) to determine field order in your video; output will be TFF. In CCE use 'output TFF' and offset line =0. -
Originally Posted by Alex_ander
Similar Threads
-
How to convert AC3 True-HD to DTS ?
By Kernell in forum AudioReplies: 15Last Post: 29th May 2016, 21:42 -
Which is better - usb stick vhs cap or hd-pvr cap + convert for vhs to dvd?
By yoda313 in forum Capturing and VCRReplies: 22Last Post: 22nd Dec 2011, 20:13 -
Software to convert a letterboxed video back to true widescreen?
By gastrof in forum Newbie / General discussionsReplies: 2Last Post: 25th Apr 2009, 15:39 -
Convert Pseudo Widescreen to Proper Widescreen
By simonw2008 in forum Video ConversionReplies: 5Last Post: 5th Apr 2008, 20:57 -
Convert letterboxed widescreen to anamorphic widescreen?
By ziggy1971 in forum Video ConversionReplies: 6Last Post: 7th Mar 2008, 22:15