|
Hi Pedro, Currently, I’m using
It would be great if we could set these parameters manually, for example: val cameraManager = genericStream.videoSource
cameraManager.setManualISO(800)
cameraManager.setExposureTime(10_000_000L)
cameraManager.setWhiteBalance(RggbChannelVector(1.5f, 1.0f, 1.0f, 1.5f))Currently, Would it be possible to open or make Something like: cameraManager.setCustomRequestCallback { builder ->
builder.set(CaptureRequest.SENSOR_SENSITIVITY, 800)
builder.set(CaptureRequest.SENSOR_EXPOSURE_TIME, 10_000_000L)
}That would make it possible to extend the library for professional or custom camera use cases (e.g. manual exposure control in live streaming apps). Thanks for your great work and for considering this request! |
Replies: 2 comments 2 replies
|
Hi @pedroSG94 could you help me check it? Thanks and best regards |
|
Hello, setCustomRequest is now available in the last commit of master branch: |
I did a new release with this change. You can use the library version 2.6.6