From 2682766eb53dcdef0dc00d53712555cb9d6b47df Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Tue, 9 Dec 2025 14:27:38 -0500 Subject: [PATCH] Add 5:3 aspect option --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index a61c2e3..e43a510 100644 --- a/main.go +++ b/main.go @@ -2885,7 +2885,7 @@ func buildConvertView(state *appState, src *videoSource) fyne.CanvasObject { transformHint := widget.NewLabel("Apply flips and rotation to correct video orientation") transformHint.Wrapping = fyne.TextWrapWord - aspectTargets := []string{"Source", "16:9", "4:3", "5:4", "1:1", "9:16", "21:9"} + aspectTargets := []string{"Source", "16:9", "4:3", "5:4", "5:3", "1:1", "9:16", "21:9"} targetAspectSelect := widget.NewSelect(aspectTargets, func(value string) { logging.Debug(logging.CatUI, "target aspect set to %s", value) state.convert.OutputAspect = value