I'm trying to force aspect ratio on some encodes but it's not taking. I know I can manually set it in mkvtoolnix but would rather skip that bit. I've set it to 4:3 but it ends up being 2.0. Using megui.
[Attachment 89065 - Click to enlarge]
[Attachment 89066 - Click to enlarge]
I also don't see an option for 16:9. Thanks.
[Attachment 89067 - Click to enlarge]
+ Reply to Thread
Results 1 to 6 of 6
-
-
Last edited by Selur; 5th Oct 2025 at 12:59.
users currently on my ignore list: deadrats, Stears555, marcorocchini -
The correct SAR for a 4:3 DAR 720x480 video is 8:9. Note that 720x480 is often really 704x480 with 8 pixels of padding at the left and right. With that type of video the real SAR is 10:11. Keep in mind that not all players will respond to DAR/SAR flags.
-
For 16:9 DAR (Display Aspect Ratio) the SAR (Sampling Aspect Ratio) is 32:27 for an NTSC DVD.
Take note that SAR (Sampling Aspect Ratio) is basically the same as PAR (Pixel Asect Ratio) which you will find in the literature. This often leads to confusion. For mutual understanding it is therefore recommended to spell the acronyms out.Last edited by Sharc; 6th Oct 2025 at 02:22.
-
All good info, thanks. I went another route and used an NLE to scale it up uniformly, then nudged it back and forth with keyframes. Wildly inaccurate borders, even in the same "scene". The exported uncompressed avi is seen as 4:3, but good to know in the future for avisynth, thanks.
-
You can set a display aspect ratio when using MeGUI by adding its global DAR variables to the script.
It's the same way MeGUI adds a DAR to a script itself when anamorphic encoding is enabled in the script creator.
To set an exact 4:3 DAR
global MeGUI_darx = 4
global MeGUI_dary = 3
If you load the script and open the video preview, the DAR should be shown at the bottom. There's a "Preview DAR" check box for previewing how it will display. If the "Force SAR" option is set to "Default" in the encoder configuration, MeGUI will calculate the appropriate sample aspect ratio for you (based on the resolution) and add it to the command line for encoding.
https://forum.doom9.org/showthread.php?p=1058927
Code:For a 720x480 NTSC source, assuming you haven't cropped. DAR 4:3 = SAR 8:9 DAR 15:11 = SAR 10:11 DAR 16:9 = SAR 32:27 DAR 20:11 = SAR 40:33 For a 720x576 PAL source, assuming you haven't cropped. DAR 4:3 = SAR 16:15 DAR 15:11 = SAR 12:11 DAR 16:9 = SAR 64:45 DAR 20:11 = SAR 16:11
Last edited by hello_hello; 8th Oct 2025 at 20:43.
Avisynth functions Resize8 Mod - Audio Speed/Meter/Wave - FixBlend.zip - Position.zip
Avisynth/VapourSynth functions CropResize - FrostyBorders - CPreview (Cropping Preview)
Similar Threads
-
5:4 Aspect ratio when capturing
By Idan1822 in forum Capturing and VCRReplies: 8Last Post: 26th Oct 2023, 03:59 -
About video aspect ratio!
By Valentin98 in forum Video ConversionReplies: 2Last Post: 30th Aug 2023, 07:27 -
JPG Aspect Ratio
By Anakin in forum EditingReplies: 5Last Post: 23rd Dec 2022, 06:05 -
aspect ratio converter
By rw1954 in forum Video ConversionReplies: 23Last Post: 26th May 2022, 18:00 -
Aspect Ratio Conversion
By rw1954 in forum Newbie / General discussionsReplies: 1Last Post: 25th May 2022, 18:56