I have video with broken aspect ratio (height is broken- faces looks too long). How to fix that? I tried "crop" filter - but its jtt cut frame from top and bottom
here's original video
https://drive.google.com/file/d/1E7kXNA_gKfX9U0D5Km872iqPb4twjvgW/view?usp=sharing
+ Reply to Thread
Results 1 to 6 of 6
-
-
+1
The video is 4:3 AR. If you play it at another AR it would look odd. -
+2
AR (4/3) doesn't seem incorrect to me.
DAR correction can be done at container level without reencoding. -
The video has a 4:3 frame size and displays as 4:3. But I think the OP is right, Amy Poehler's face is too narrow (compare with her other appearances on SNL at youtube.com). Stretching the video to 16:9 is obviously too wide though. I think somewhere around 600x384 gives the right aspect ratio. So setting the DAR flag to about 1.56 should work.
-
Quick ffmpeg test shows the square window ( assuming it was meant to be square) beside her head measure 208x220 with a Pixel ruler. That is an error of 0.945. Doing the math shows 720x454 makes the square exactly square. That makes aspect 720/454 =1.586
Using ffmpeg below display correctly and does not re-encode:
Code:ffmpeg -i "D:\Replay Media Catcher\videoplayback.mp4" -aspect 720:454 -c copy output.mp4
[Attachment 56882 - Click to enlarge]
Similar Threads
-
Program that can detect video height, width, FPS and add info to meta tags?
By Everything222 in forum EditingReplies: 2Last Post: 14th Oct 2020, 16:51 -
How to increase just the height and not width?
By navarannan in forum EditingReplies: 20Last Post: 18th Feb 2019, 08:15 -
uncropMKV: Video height not compliant
By Patapin in forum Video ConversionReplies: 7Last Post: 1st Mar 2017, 04:54 -
WMP ignores video display height/width in MKV header
By draig-llofrudd in forum Video ConversionReplies: 2Last Post: 6th Dec 2016, 09:35 -
Avidemux: changing width and height don't change video-size
By Tedbax in forum Newbie / General discussionsReplies: 5Last Post: 12th Mar 2016, 14:18