diff options
author | Ivan Chen <ivan@tagg.id> | 2021-07-26 16:09:44 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-07-26 16:09:44 -0400 |
commit | 231ef224ce04759832fcfb27f9c6bea917f5d789 (patch) | |
tree | 134219e02a178d1394c849837fee3d588e826e06 /src/utils/camera.ts | |
parent | 5936fb83e5ac073e2a172965a29009ce77305d45 (diff) |
Set quality to passthrough to fix issue
Diffstat (limited to 'src/utils/camera.ts')
-rw-r--r-- | src/utils/camera.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/camera.ts b/src/utils/camera.ts index 8104ba74..cf9648f4 100644 --- a/src/utils/camera.ts +++ b/src/utils/camera.ts @@ -153,7 +153,7 @@ export const cropVideo = ( ? Math.round(videoCropValues.cropOffsetY) : 0 : 0, - quality: 'highest', + quality: 'passthrough', }).then((data: any) => { if (muted) { removeAudio(data, handleData); |