jmac698
21st February 2006, 18:46
I discovered a new technique for producing caps with 33% better resolution than ever before! Also the benefit of mixing two versions where one is better quality.
It's simple, take a fullscreen, 4:3 version, and place it on top a scaled, letterbox version.
Situations where useful:
-Poor letterbox version, fullscreen ok. Combine to high quality anamorphic.
-Videotapes: their resolution is so poor, it will look better when combined.
-With higher quality movies, you still get better rez in the central area.
-TV caps, one channel letterbox the other fullscreen. Reduce the bad reception and ensure two logos instead of one! :)
Some conditions apply:
-To get better rez, the fullscreen version must be true; not just scaled up from a letterbox itself.
-There is only a point to this if it's widescreen material.
-You don't have access to an anamorphic version.
-Maybe your letterbox version is poor quality.
Remember, there's import DVDs of various quality, take the best fullscreen version and add the missing sides from another version (Chinese Connection), also DVD's where there's no anamorphic version so combine both sides to your own better one (Bladrunner). Also enhance material not on DVD, like the changed scenes and missing documentaries from Star Wars.
Technique
Make your two caps, trim them to correspond. The numbers will have to be tweaked for your situation.
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\DGDecode.dll")
clip1=MPEG2Source("C:\MyVideos\capture.d2v").trim(389,0).BilinearResize(720,480,0,58,0,360)
clip2=MPEG2Source("C:\MyVideos\capture-full.d2v").trim(105,0).BilinearResize(540,480,4,0,710,480)
overlay(clip1,clip2,x=92,y=2,opacity=1.0,mode="blend")
A note about anamorphic. This only applies to 4:3 display devices:
-Better quality if you have a projector with a horizontally stretching lens, to expand the skinny anamorphic to widescreen.
-Better if your tube TV physically draws lines in the vertically smaller area.
-Otherwise, not really better. Compare: anamorphic, that your DVD player scales from 480 lines to 360 lines, or the studio prescales this for you. The DVD player may not do such a good job as the studio, so letterbox DVD can actually be better!
[edit: much rambling removed]
It's simple, take a fullscreen, 4:3 version, and place it on top a scaled, letterbox version.
Situations where useful:
-Poor letterbox version, fullscreen ok. Combine to high quality anamorphic.
-Videotapes: their resolution is so poor, it will look better when combined.
-With higher quality movies, you still get better rez in the central area.
-TV caps, one channel letterbox the other fullscreen. Reduce the bad reception and ensure two logos instead of one! :)
Some conditions apply:
-To get better rez, the fullscreen version must be true; not just scaled up from a letterbox itself.
-There is only a point to this if it's widescreen material.
-You don't have access to an anamorphic version.
-Maybe your letterbox version is poor quality.
Remember, there's import DVDs of various quality, take the best fullscreen version and add the missing sides from another version (Chinese Connection), also DVD's where there's no anamorphic version so combine both sides to your own better one (Bladrunner). Also enhance material not on DVD, like the changed scenes and missing documentaries from Star Wars.
Technique
Make your two caps, trim them to correspond. The numbers will have to be tweaked for your situation.
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\DGDecode.dll")
clip1=MPEG2Source("C:\MyVideos\capture.d2v").trim(389,0).BilinearResize(720,480,0,58,0,360)
clip2=MPEG2Source("C:\MyVideos\capture-full.d2v").trim(105,0).BilinearResize(540,480,4,0,710,480)
overlay(clip1,clip2,x=92,y=2,opacity=1.0,mode="blend")
A note about anamorphic. This only applies to 4:3 display devices:
-Better quality if you have a projector with a horizontally stretching lens, to expand the skinny anamorphic to widescreen.
-Better if your tube TV physically draws lines in the vertically smaller area.
-Otherwise, not really better. Compare: anamorphic, that your DVD player scales from 480 lines to 360 lines, or the studio prescales this for you. The DVD player may not do such a good job as the studio, so letterbox DVD can actually be better!
[edit: much rambling removed]