CameraPreview plugin

ref: https://ionicframework.com/docs/native/camera-preview/

// take a picture
this.cameraPreview.takePicture(this.pictureOpts).then((imageData) => {
this.picture = ‘data:image/jpeg;base64,’ + imageData;
}, (err) => {
console.log(err);
this.picture = ‘assets/img/test.jpg’;
});

Is there anyway to mute the sound of capturing the images.
Please help

Instead of this.cameraPreview.takePicture use this.cameraPreview.snapShot