Add 5:3 aspect option

This commit is contained in:
Stu Leak 2025-12-09 14:27:38 -05:00
parent d14225f402
commit 2682766eb5

View File

@ -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