Is there a program that will convert non-anamorphic widescreen VOB files to anamorphic widescreen? More and more, I find non-anamorphic widescreen DVDs to be very annoying.
I realize the lines of resolution used for the letterboxing are lost, but there are 2 reasons I'd like to do this:
1. Convenience - not having to hunt for the zoom button on the DVD player.
2. Picture Quality - Potentially better if the resizing is done with a good resampling/anti-aliasing algorithm. Some DVD players don't have a very good Zoom mode unless they use the Faroudja chip, but none of mine have Faroudja.
If such a utility exists, please point me to it. I already did a search and didn't find much.
+ Reply to Thread
Results 1 to 16 of 16
-
-
I believe you are going to be re-encoding. If you are okay with this, then look into dgIndex/dgMPEGdec. I don't hink you'll have to inverse telecine if the DVD was authored properly. Just crop 60 from the top and bottom and resize to 480 lines (assuming your source is NTSC). However, you'll have to take special care with interlaced sources (bob, crop, resize, weave).
Darryl -
I've done that with Tmpgenc, but never really like the results.
But, its pretty easy to crop the black bars off, then reencode with 16x9.
Its nice because some players handle non-anamophic widescreens wierd, adding a seperate letterbox, often using 2 different colors!
Reencoding solves that, but as dphirschler pointed out, you need to be carefull with all the 3:2 settings.
Nick -
"bob, crop, resize, weave" can create annoying artifacts with a lot of material. Consider a thin white (intensity 100) horizontal line on a black (intensity 0) background:
Code:(one column of pixels, Odd/Even scanlines, intensity of pixel) O:000 E:000 O:100 E:000 O:000 E:000
Code:O:000 E:000 O:100 E:000 O:000 E:000
Code:O:000 E:000 O:050 E:000 O:100 E:000 O:050 E:000 O:000 E:000 O:000 E:000
Code:O:000 E:000 O:050 E:000 O:100 E:000 O:050 E:000 O:000 E:000 O:000 E:000
IVTC is better if it can be done. -
I was not saying he shouldn't IVTC, I was saying he shouldn't have to. If he rips a 3:2 movie, it will be progressive anyways. Bob, crop, resize, weave was my strategy for true interlaced source. You really don't have a choice. It's the best way to resize interlaced video.
Darryl -
Originally Posted by dphirschler
- 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
-
Sure. Here you go.
Code:function anamorphVideo(clip v) { # deinterlace the video v=assumeTFF(v) #v=assumeBFF(v) v=bob(v) # resize and reinterlace v=v.crop(0,60,720,-60) #assumes 720 width v=v.BilinearResize(720,480) #DVD res (anamorphic) #v=v.SeparateFields.SelectEvery(4,0,3) #BFF (even) v=v.SeparateFields.SelectEvery(4,1,2) #TFF (odd) #v=converttoyuy2(v) #corrects for wierd YV12 problem v=weave(v) #reinterlace return(v) }
temporarily stick a "return v" right after the bob and test to make sure that TFF works, otherwise, use BFF. Depends on your video source. The "SeparateFields" calls are for your output. So if you want TFF, then use that one, otherwise, use BFF. It is independent of the assumeTFF/BFF commands.
The converttoYUY2 is there for YV12 sources. Sometimes you will see some weird color shifts between fields if it is a YV12 source. Converting it to YUY2 corrects that. Depending on your encoder, you may have to convert it back to YV12 when done.
Darryl[/code] -
Thanks I will have to play around with that next time I capture a 4:3 widescreen source.
Just so I understand ... in the end you get 16x9 interlaced video ... correct?
- 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
-
Originally Posted by dphirschler
Anyways exicted to try this new method when I get a chance.
- 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
-
Originally Posted by FulciLives
Darryl -
I've actually spent the better part of the last two weeks reencoding my 4:3 letterbox stuff to 16:9 and, for the most part, the results have been pretty good. I've been using DVD2SVCD with the D2SRoba and CCE2.50 (you can also use tmpgenc - and keep it all free). The important thing is to set your aspect ratio out to "anamorphic" and under the Frameserver tab, set your Avisynth setup to "BicubicResize" and use this script:
0=Import(!RoBaConditional.avs)
1=BicubicResize(720,480,1/3,1/3,0,60,720,360)
2=AddBorders(0,0,0,0)
!RoBaConditional.avs=D:\Program Files\DVD2SVCD\Tylo\RoBaConditional.avs
When you select "Go" on the conversion tab, you can choose "preview video" to see what your new image will look like just to make sure you've done it correctly.
Within about 3.5 hours you'll have a newly encoded 16:9 version.
Now, I do see interlace artifacts from time to time (maybe two frames every 20-30 minutes, just enough for me to know I saw something). The biggest thing to remember though, is that your output will only be as good as your input. I've done a few titles that I would have sworn were originally 16:9 if I hadn't done them myself (and with no visible interlace artifacts - Mystery Science Theater: The Movie, Encino Man, Private Parts) and some that were decent, but not great (The Three Musketeers -93). The more artifacting in the source, the more obvious it's going to be vertically stretched.
But I agree with you, non-anamorphic discs are a pain and even with a great player like the Oppo, the zoom mode still makes it impossible to watch these. I've found this to be a most pleasant (if not completely time consuming) alternative. Hope that helps.
Cliff -
Originally Posted by CliffS
Crop(0,60,720,360)
LanczosResize(720,480)
and this appears to have worked just fine, altho it took fully 13 hours for TMPGEnc to complete (at Highest quality (very slow))!!!
Tonight I will look at the original DVD (zoomed) and the converted anamorphic version to see if the effort was worth doing. Thanks for your post to get me started! I'm not sure I'd ever have tried the poorly-named DVD2SVCD otherwise!!
EDIT: As I said in the other thread on this subject, my converted anamorphic disc looked no better than zooming w/my Sony 60XBR800. So I won't be going-back and converting my 4:3 letterboxed discs. Still, it's good to know about this tool because it appears it can also be used to run other filters vs just resize...
Similar Threads
-
Anamorphic widescreen with TMPGenc Author Works 4
By jakewoodblues in forum Authoring (DVD)Replies: 1Last Post: 23rd May 2010, 02:26 -
Best way to convert 4:3/non-anamorphic DVDs to 16:9 anamorphic. HELP!!
By CoachSerpico in forum Video ConversionReplies: 9Last Post: 11th Feb 2010, 15:46 -
vertical resolution of anamorphic widescreen?
By Sean_ve99 in forum Video ConversionReplies: 12Last Post: 7th Jan 2009, 11:41 -
Anamorphic DVD from Widescreen h.264 Video
By trueg in forum SVCD2DVD & VOB2MPGReplies: 14Last Post: 16th Sep 2008, 10:47 -
Convert letterboxed widescreen to anamorphic widescreen?
By ziggy1971 in forum Video ConversionReplies: 6Last Post: 7th Mar 2008, 22:15