feat: add 4k resolution

This commit is contained in:
Guoguo
2025-12-15 11:15:55 +08:00
parent 699e132aad
commit 9659ce38fc
2 changed files with 2 additions and 0 deletions

View File

@@ -22,6 +22,7 @@ export const Resolution = () => {
const [customResolutions, setCustomResolutions] = useState<VideoResolution[]>([]);
const resolutions: VideoResolution[] = [
{ width: 3840, height: 2160 },
{ width: 2560, height: 1440 },
{ width: 1920, height: 1080 },
{ width: 1280, height: 720 },

View File

@@ -23,6 +23,7 @@ export const Resolution = (): ReactElement => {
const [customResolutions, setCustomResolutions] = useState<VideoResolution[]>([])
const resolutions: VideoResolution[] = [
{ width: 3840, height: 2160 },
{ width: 2560, height: 1440 },
{ width: 1920, height: 1080 },
{ width: 1280, height: 720 },