CameraEngine
CameraEngine copied to clipboard
Preview without audio
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
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.
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.
+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.