CameraEngine icon indicating copy to clipboard operation
CameraEngine copied to clipboard

Preview without audio

Open danielchristopher1 opened this issue 8 years ago • 3 comments

When I start a session for the first time, it shows a dialog asking the user for a microphone permission. I do not want the microphone to be used and have audio processed, all I want is a camera preview. How can I disable the audio recording?

Thanks

danielchristopher1 avatar Jul 23 '16 04:07 danielchristopher1

Hum, it's actually not difficult at all to mute the sound for a video. since the video, and the sound, are written independently. I need to add a property like :

public var sound: Bool = true {
  didSet {
     //do stuff here.
  }
}

I will add the feature.

remirobert avatar Jul 23 '16 07:07 remirobert

Actually, that is not what I meant. It's actually requesting permission to use the microphone the first time I open my app. I don't need that permission.

danielchristopher1 avatar Jul 26 '16 04:07 danielchristopher1

+1

I encountered the same issue/feature at first time open my app. The app crashes at second launch, if I cancel the mic permission.

b992 avatar Sep 18 '16 00:09 b992