diff options
author | Ivan Chen <ivan@tagg.id> | 2021-07-27 13:29:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-27 13:29:11 -0400 |
commit | 32a81a23e386c58692ab7e61fcd3ad1f510613a2 (patch) | |
tree | a6187b7fe5c8f950ebbcaf699fa55c75a1890d8e | |
parent | a739005350c5d76ee0e7e03c27dfccf84d7e429d (diff) | |
parent | 231ef224ce04759832fcfb27f9c6bea917f5d789 (diff) |
Merge pull request #528 from IvanIFChen/tma1026-bugfix-video-moment-rotated
[TMA-1026] [BUGFIX] Video Moment Gets Rotated
-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 9b63c808..f21ef133 100644 --- a/src/utils/camera.ts +++ b/src/utils/camera.ts @@ -154,7 +154,7 @@ export const cropVideo = ( ? Math.round(videoCropValues.cropOffsetY) : 0 : 0, - quality: 'highest', + quality: 'passthrough', }).then((data: any) => { if (muted) { removeAudio(data, handleData); |