How we can set CameraExposure & White Balance #1620
Unanswered
ChiragLiveu
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I need to change the CameraExposure and White Balance using the code below, but I receive a 'not implemented' error. Is there a way to set these through Flutter WebRTC? See the example code
Future setCameraExposure(double value) async {
if (localVideoRenderer.srcObject == null) return;
}
Future setWhiteBalance(double value) async {
if (localVideoRenderer.srcObject == null) return;
}
Could anyone please help me on this ?
Beta Was this translation helpful? Give feedback.
All reactions