I have several VHS tapes where the film is a 4:3 letterboxed 'widescreen'
version; initial results when transferring to DVD via a standalone recorder not ideal.
The resulting DVD output on a widescreen tv either :
a) looks horizontally stretched [when tv in in widescreen mode] or
b) has big black borders on the left, right, top and bottom when the
tv is in 4:3 mode [ but picture looks ok, not horizontally stretched ]
The desired result would be the picture in [b] zoomed to fill most
of the widescreen tv screen; the question is how do I achieve this
- via something like VirtualDub ? ( no, the tv does NOT have a zoom function ! )
Thanks
Ian
+ Reply to Thread
Results 1 to 14 of 14
-
-
You've got to rid yourself of the letterbox bars to make it look right. Clip them off and then convert to 16:9, then you will have the right aspect to display correctly on a widescreen TV. I usually use TMPGEnc, but you can use whatever you like.
"Rarely is the question asked: Is our children learning?"
George W Bush - Moron -
avisynth!
crop top and bottom and resize.
If you're in NTSCland:
crop 60pxl top and 60pxl bottom: (720,480)->(720,360)
resize to 720x480
and set the encoder to 16:9
If you're in PALland crop 72pixels top and bottom, resize to (720,576) and set the encoder to 16:9
You now have a true 16:9 movie with no black bars that will play fine on your 16:9 tv screen.Sorry, I had to go see about a girl -
Yes, you can use those methods to create an anamorphic 16:9 DVD but watch out for interlace issues (inverse telecine the source if you can). And you will end up with a big fuzzy 16:9 picture.
-
Let's see if I've got this straight - I need to crop & re-size [is that 2
separate steps, or both operations at once ?] , either by using TMPGEnc,
or by using Avisynth + something else ( not sure what. VirtualDub
only seems to create .avi files) However the end result will probably have some serious anti-aliasing issues.. !
Thanks
Ian -
Originally Posted by Ian Huxley
-
It will look awful on a decent TV. If your goal is a small window then disregard this reply.
-
Here are a couple of simple AviSynth scripts for converting a 4:3 WS source to a 16x9 WS format.
This is for NTSC assuming you captured at 720x480 29.970fps
Code:AviSource("D:\CAPTURE\capture.avi") Crop(0,60,720,360) SeparateFields() LanczosResize(720,240) Weave()
Code:AviSource("D:\CAPTURE\capture.avi") Crop(0,72,720,432) SeparateFields() LanczosResize(720,288) Weave()
- John "FulciLives" Coleman
P.S.
This method only works if the aspect ratio of the original is at least 1.78:1 or greater (such as 1.85:1 or 2.35:1 etc.)"The eyes are the first thing that you have to destroy ... because they have seen too many bad things" - Lucio Fulci
EXPLORE THE FILMS OF LUCIO FULCI - THE MAESTRO OF GORE
-
In theory you can do it all in Tmpgenc. Assuming NTSC, you use Setting -> Advanced -> Clip Frame to remove some or all of the black border -- leaving a frame size of 720x360. Then on the same dialog set the Video Arrange Method to Full Screen (that will stretch the 720x360 frame to 720x480).
Since you are capturing from VHS tape you will have interlaced video. If the original source was film you may be able to inverse telecine back to 23.976 fps progressive frames. The automatic inverse telecine that Tmpgenc does isn't very good. If your captures are perfect (no dropped frames) and the original telecine was perfect (no changes in telecine pattern) you can use the manual settings. -
Junkmalle is correct, you can do it all within tmpgenc. I suggested avisynth because filtering with tmpgenc can be slow as hell, while if you do it with avisynth+frameserve it will be a lot faster.
The sample scripts Fulci posted above are what I was referring to. It may be useful to add that if you plan to use tmpegenc it's wise to add
convertToRGB24()
after the last line, whereas if you use CCE:
ConvertToYUY2()
This way the encoder won't waste precious time doing those conversions.Sorry, I had to go see about a girl -
Originally Posted by midnightsun
ConvertToRGB(interlaced=true)
or
ConvertToYUY2(interlaced=true)
I think the default is false aka progressive.
- John "FulciLives" Coleman"The eyes are the first thing that you have to destroy ... because they have seen too many bad things" - Lucio Fulci
EXPLORE THE FILMS OF LUCIO FULCI - THE MAESTRO OF GORE
-
right, it looks like I forgot that his source was interlaced!!
I have to add though that converttorgb does the trick only if the source is already rgb24 (which I'm assuming is what tmpgenc accepts as input, as opposed to rgb32). The avisynth documentation says that if you need rgb24 output (and the source isn't rgb24 already) you have to specify converttorgb24 instead of converttorgb. I have had tmpgenc crash on me before because of that!Sorry, I had to go see about a girl -
Thanks for the info, I'll give it a go. Something along the lines
of :
AviSource("f:\CAPTURE\VIDEO_TS\vts_01_01.vob")
Crop(0,72,720,432)
SeparateFields()
LanczosResize(720,288)
Weave()
ConvertToRGB(interlaced=true)
If for arguements sake I wasn't using TMPGENC, are the any (cheap or free)
tools out there which will open the above .avs script and allow me
to save the result as a .vob file directly ( ie have the whole process
go .vob >> .vob instead of .vob >> .avi >> .vob ? Or is it time
to finally get round to downloading TMPGENC..... ? -
Originally Posted by Ian Huxley
The price is about the same too so it's a no brainer if you ask me ... except CCE without AviSynth is somewhat useless so most shy away from that "deadly duo" but it ain't hard and overall is a better method.
- John "FulciLives" Coleman"The eyes are the first thing that you have to destroy ... because they have seen too many bad things" - Lucio Fulci
EXPLORE THE FILMS OF LUCIO FULCI - THE MAESTRO OF GORE
Similar Threads
-
DVD Shuffling Required
By JamieLee2k in forum Authoring (DVD)Replies: 1Last Post: 15th Apr 2012, 09:50 -
VHS to DVD help required (some confusion)...
By takearushfan in forum Newbie / General discussionsReplies: 10Last Post: 19th May 2011, 19:28 -
Tmpgenc DVD Author 4 Help Required
By M2DEP in forum Video ConversionReplies: 3Last Post: 17th Apr 2011, 10:05 -
Advice on VHS capturing tools
By MrTemplar in forum Capturing and VCRReplies: 8Last Post: 27th May 2010, 10:28 -
Beta/VHS Video Restoring tools. Is this a proper setup?
By HOTPROPHET in forum Newbie / General discussionsReplies: 0Last Post: 18th May 2008, 00:48