diff options
author | Ivan Chen <ivan@tagg.id> | 2021-07-02 18:42:05 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-07-02 18:42:05 -0400 |
commit | 6b57e63dd0e81c167710649ec7778fedf8118a23 (patch) | |
tree | 274fe044000ef362a69a482fe0a28cc9ce7b0a58 /src/utils/camera.ts | |
parent | b0d8c88ff56ce2eb1f43114d27420739f5ecfe80 (diff) |
Change max duration to 60
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 c997e8b8..4f933b0c 100644 --- a/src/utils/camera.ts +++ b/src/utils/camera.ts @@ -38,7 +38,7 @@ export const takeVideo = ( if (cameraRef !== null) { const options: RecordOptions = { orientation: 'portrait', - maxDuration: 10, + maxDuration: 60, quality: '1080p', }; cameraRef.current?.recordAsync(options).then((vid) => { |