Disable shutter sound

This commit is contained in:
Johannes Klein
2024-06-24 14:23:07 +02:00
parent 0a32ffbb9e
commit f44297a731

View File

@@ -31,7 +31,9 @@ const useTakePhoto = (
const hasFlash = device?.hasFlash;
const initialPhotoOptions = {
enableShutterSound: true,
// We had this set to true in Seek but received many reports of it not respecting OS-wide sound
// level and scared away wildlife. So maybe better to just disable it.
enableShutterSound: false,
...( hasFlash && { flash: "off" } as const )
} as const;
const [takePhotoOptions, setTakePhotoOptions] = useState<TakePhotoOptions>( initialPhotoOptions );