- minor bugfixes

- added developer modal for viewing app data
This commit is contained in:
2025-12-12 12:18:17 +00:00
parent b38fbe132b
commit 3fbafbbcc7
10 changed files with 163 additions and 9 deletions

View File

@@ -24,7 +24,11 @@ export const useCreateVideoSnapshot = () => {
if (!snapShot) return;
try {
const bitmap = await createImageBitmap(snapShot);
const bitmap = await createImageBitmap(snapShot, {
resizeWidth: 720,
resizeHeight: 1080,
resizeQuality: "high",
});
if (!bitmap) return;
latestBitmapRef.current = bitmap;
} catch (error) {