diff --git a/README.md b/README.md index 87d56d9..3224353 100644 --- a/README.md +++ b/README.md @@ -132,7 +132,7 @@ The `aspect` property allows you to define how your viewfinder renders the camer #### `iOS` `captureAudio` -Values: `true` (default), `false` (Boolean) +Values: `true` (Boolean), `false` (default) *Applies to video capture mode only.* Specifies whether or not audio should be captured with the video. diff --git a/index.js b/index.js index 51ac504..dacbabc 100644 --- a/index.js +++ b/index.js @@ -116,7 +116,7 @@ export default class Camera extends Component { aspect: CameraManager.Aspect.fill, type: CameraManager.Type.back, orientation: CameraManager.Orientation.auto, - captureAudio: true, + captureAudio: false, captureMode: CameraManager.CaptureMode.still, captureTarget: CameraManager.CaptureTarget.cameraRoll, captureQuality: CameraManager.CaptureQuality.high,