diff options
-rw-r--r-- | .github/auto_assign.yml | 2 | ||||
-rw-r--r-- | src/utils/camera.ts | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/.github/auto_assign.yml b/.github/auto_assign.yml index d5d2a2fe..5b8b13db 100644 --- a/.github/auto_assign.yml +++ b/.github/auto_assign.yml @@ -12,6 +12,8 @@ reviewers: - shravyaramesh - grusuTagg - brian-tagg + - hsalhab + - sotech117 # A number of reviewers added to the pull request # Set 0 to add all the reviewers (default: 0) diff --git a/src/utils/camera.ts b/src/utils/camera.ts index 8104ba74..f21ef133 100644 --- a/src/utils/camera.ts +++ b/src/utils/camera.ts @@ -67,6 +67,7 @@ export const navigateToMediaPicker = ( 'SelfPortraits', 'Screenshots', 'UserLibrary', + 'Videos', ], mediaType: 'any', compressVideoPreset: 'Passthrough', @@ -153,7 +154,7 @@ export const cropVideo = ( ? Math.round(videoCropValues.cropOffsetY) : 0 : 0, - quality: 'highest', + quality: 'passthrough', }).then((data: any) => { if (muted) { removeAudio(data, handleData); |