View Full Version : Whats my options on 4:3 to 16:9
color
10th June 2018, 20:45
What is my options on a video filmed in 4:3 to get to 16:9 exept adding borders on the sides or crop it in the middle?
Is there a good "tracking plugin" that might crop it right for avisynth script (face or what they do) or possible to make points on all scenes where it should be croped or do I need a more advance program to do this?
amichaelt
10th June 2018, 23:02
If you really must you can always try WarpedResize that is part of the SimpleResize filter: http://avisynth.nl/index.php/SimpleResize
WarpedResize will do a non-linear stretch/squeeze in both the horizontal and vertical dimensions. This can be useful when you want to change the aspect ratio of a video clip and have it mostly distorted at the top, bottom, and side edges. This is mostly experimental but I added it because it required few code changes and almost zero performance penalty. See the Examples section below.
Otherwise, cropping or pillarboxing are your only other options.
FranceBB
11th June 2018, 00:30
Is there a good "tracking plugin" that might crop it right for avisynth script (face or what they do)?
In other words, Pan & Scan. I've been dealing with it in 2015 when I was trying to Restore a few old 4:3 contents:
https://forum.doom9.org/showthread.php?t=172566
color
12th June 2018, 07:26
I think I have to give Sony Vegas a try. I think I have to give another editor a try.
Or crop manually every scene and then merge them after export. Maybe easier than doing this in another program?
Katie Boundary
12th June 2018, 22:45
Otherwise, cropping or pillarboxing are your only other options.
No, linear distortion is also an option.
amichaelt
13th June 2018, 00:48
No, linear distortion is also an option.
Only if their request was a way to make the video look awful which doesn't sound like what they wanted.
color
13th June 2018, 14:59
I want to do a little update. I did edit the movie in virtualdub, exporting it in 5 files cause most parts are kind of good just croping it to the middle part but some needed to be cropped so the top parts is more visible to not cut of heads.
Stupid question again, what is it called when you leave the "middle part" as it is but only stretch the corners? (Like widescreen tv's had as option when watching 4:3 videos in widescreen, it looked horrible when someones head or shoulder is stretched out, but I always wanted to know what it is called)
johnmeyer
13th June 2018, 16:18
Stupid question again, what is it called when you leave the "middle part" as it is but only stretch the corners? Anamorphic format (https://en.wikipedia.org/wiki/Anamorphic_format)
[edit]I developed techniques in my NLE, Vegas, to do non-linear stretching, so that most of the stretching happens at the edges. Unlike anamorphic stretching for movies (in the above link), where the stretching is "un-done" during projection, the stretching I did in Vegas to go from 4:3 to 16:9 leaves the image stretched at the edges.
Having done that work, IMHO it is much, much better to simply add the pillars on the sides when going from 4:3 to 16:9. Every other "trick" makes the video look really bad and is distracting.
amichaelt
13th June 2018, 21:02
I want to do a little update. I did edit the movie in virtualdub, exporting it in 5 files cause most parts are kind of good just croping it to the middle part but some needed to be cropped so the top parts is more visible to not cut of heads.
Stupid question again, what is it called when you leave the "middle part" as it is but only stretch the corners? (Like widescreen tv's had as option when watching 4:3 videos in widescreen, it looked horrible when someones head or shoulder is stretched out, but I always wanted to know what it is called)
That would be what the WarpedResize I linked to does. It's a non-linear stretch when resizing.
color
18th June 2018, 22:12
I did try warpedesize but I get wierd color distortion, well color bleeding or what it is called, a bug?
How do I best do 900x720 to 1280x720, don't get the hWarp and vWarp to look "normal", it looks like the filter fisheye when I move it up.
I do think "WarpedResize(1280, 720, 0.5, 1)" looks a bit okey, it has a little black bars on the sides that need to be cut.
I did try warpresize but I get wierd color distortion, well color bleeding or what it is called, a bug? How do I best do 900x720 to 1280x720, don't get the hWarp and vWarp to look "normal", it looks like the filter fisheye when I move it up. I do think "WarpedResize(1280, 720, 0.5, 1)" looks a bit okey, it has a little black bars on the sides that need to be cut.
https://s33.postimg.cc/wsjjoho7z/Holiday_Special_1978_480p_030265.png
amichaelt
18th June 2018, 22:34
There is a bug with YV12 sources I see from the Avisynth wiki page. Maybe this (https://forum.doom9.org/showthread.php?p=1770004#post1770004) can help you?
Has anybody used WarpedResize [with a YV12 source] lately? For me it is warping Chroma from one side instead of centered like Luma, which looks a bit odd:
LoadPlugin(p + "SimpleResize\Avisynth_2.5_Alpha\SimpleResize.dll")
ColorBars(pixel_type="YV12")
Subtitle("5 4 3 2 1 0 1 2 3 4 5",
\ align=5, size=Height*0.2, font="Courier New",
\ text_color=$aaffffff, halo_color=$ff000000)
WarpedResize(Width, Height, 1.5, 1.0)
Subtitle("WarpedResize(hWarp=1.5)", align=8,
\ text_color=$ebebeb, halo_color=$ff000000)
return Last
https://www.dropbox.com/s/3yr5xqzlkhlxaex/WarpedResize-colorbars.jpg?raw=1
...but this fixes the problem:
## fix WarpedResize YV12 chroma bug; make warp arguments optional
function WarpedResize2(clip C, int width, int height, float "hWarp", float "vWarp")
{
Assert(C.IsYV12,
\ "WarpedResize2: source must be YV12")
Assert(width % 4 == 0,
\ "WarpedResize2: 'width' arg must be mod 4")
Assert(height % 4 == 0,
\ "WarpedResize2: 'height' arg must be mod 4")
hWarp = Default(hWarp, 1.0)
vWarp = Default(vWarp, 1.0)
U = C.UToY .WarpedResize(width / 2, height / 2, hWarp, vWarp)
V = C.VToY .WarpedResize(width / 2, height / 2, hWarp, vWarp)
Y = C .WarpedResize(width, height, hWarp, vWarp)
return YToUV(U, V, Y)
}https://www.dropbox.com/s/wm4ufklws62cs90/WarpedResize2-colorbars.jpg?raw=1
Katie Boundary
18th June 2018, 23:39
Only if their request was a way to make the video look awful
But every option does that
color
19th June 2018, 09:25
There is a bug with YV12 sources I see from the Avisynth wiki page. Maybe this (https://forum.doom9.org/showthread.php?p=1770004#post1770004) can help you?
Thank you. Its slow but it solved my problem. :D
kolak
19th June 2018, 12:44
Just clean edges and centre it inside 16x9 frame (pillarbox).
All other approaches are gimmicks (even Pan&Scan is a massive compromise).
color
19th June 2018, 13:28
Just clean edges and centre it inside 16x9 frame (pillarbox).
All other approaches are gimmicks (even Pan&Scan is a massive compromise).
That is for me to judge. :P Joke aside, I know and I do this a lot of the times, but I'm going to watch a full series off movies and it feels like sticking a needle in the eyes when watching a 4:3 movie because it has not been released in 16:9 when the rest of the serie has been. :)
amichaelt
19th June 2018, 15:56
But every option does that
Probably, but yours is clearly the worst. I'd simply just pillarbox, but a non-linear warp is going to look far better than your idea.
kolak
19th June 2018, 16:58
That is for me to judge. :P Joke aside, I know and I do this a lot of the times, but I'm going to watch a full series off movies and it feels like sticking a needle in the eyes when watching a 4:3 movie because it has not been released in 16:9 when the rest of the serie has been. :)
If you like gimmick solutions then your choice.
Katie Boundary
19th June 2018, 22:51
Probably, but yours is clearly the worst. I'd simply just pillarbox, but a non-linear warp is going to look far better than your idea.
That's extremely subjective. I find non-linear warping to be much more distracting/annoying than a linear warp, though both are inferior to cropping, which is in turn inferior to pillarboxing/letterboxing.
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.