Skip to content

Commit aab8a85

Browse files
committed
fix(src): fix 480p resolution
1 parent b806c9b commit aab8a85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ function resolveResolution(resolution: Resolution | PredefinedResolution): Resol
8282
const predefinedResolutions: Record<PredefinedResolution, Resolution> = {
8383
"1080p": { width: 1920, height: 1080 },
8484
"720p": { width: 1280, height: 720 },
85-
"480p": { width: 858, height: 480 },
85+
"480p": { width: 854, height: 480 },
8686
"360p": { width: 640, height: 360 },
8787
"240p": { width: 352, height: 240 },
8888
};

0 commit comments

Comments
 (0)