From 1fb1e538ce86c07c248e8355cd0bb0c20e7dfa7f Mon Sep 17 00:00:00 2001 From: www2000 Date: Fri, 20 Mar 2026 09:43:57 +0100 Subject: [PATCH] fix: add 480p descriptions and add 576p resolution Updated descriptions for 720x480 to include NTSC and add 720x576 resolutions for pal broadcasts. --- web/src/helpers/constants.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/src/helpers/constants.ts b/web/src/helpers/constants.ts index e20927f0..1e52bde5 100644 --- a/web/src/helpers/constants.ts +++ b/web/src/helpers/constants.ts @@ -46,7 +46,8 @@ export const TranscodeResolutionOptions = [ { value: '480x270', description: '480x270 (HD1080/16 16:9)' }, { value: '576x320', description: '576x320 (18:10)' }, { value: '640x360', description: '640x360 (nHD 16:9)' }, - { value: '720x480', description: '720x480 (WVGA 3:2)' }, + { value: '720x480', description: '720x480 (WVGA/EDTV/NTSC 480p NTSC 3:2)' }, + { value: '720x576', description: '720x576 (EDTV/PAL 576p PAL 4:3)' }, { value: '800x480', description: '800x480 (WVGA 15:9)' }, { value: '854x480', description: '854x480 (FWVGA 16:9)' }, { value: '800x600', description: '800x600 (SVGA 4:3)' },