Skip to content

Instantly share code, notes, and snippets.

@skydoves
Last active February 23, 2023 06:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skydoves/feb1c9acabd3cda0697886cc855be2db to your computer and use it in GitHub Desktop.
Save skydoves/feb1c9acabd3cda0697886cc855be2db to your computer and use it in GitHub Desktop.
enable_camera
// Copyright 2023 Stream.IO, Inc. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
override fun enableCamera(enabled: Boolean) {
if (enabled) {
videoCapturer.startCapture(resolution.width, resolution.height, 30)
} else {
videoCapturer.stopCapture()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment