Closed petered closed 1 year ago
Ok 4.16.4, with Mini2, product.camera.isHybridZoomSupported==true
product.camera.isHybridZoomSupported==true
You can even get the hybrid zoom spec with product.camera.getHybridZoomSpec.
product.camera.getHybridZoomSpec
But when you try to set the zoom with
product.camera.setHybridZoomFocalLength(it.maxHybridFocalLength){log("Set hybrid zoom - error?: $it")}
You get an error.
Digital zoom works fine.
It would be better if product.camera.isHybridZoomSupported returned false. Right now I just use
product.camera.isHybridZoomSupported
false
isHybridZoom by lazy{product.camera.isHybridZoomSupported && product.model.name != "DJI_MINI_2"}
Just keep using the digital zoom for Mini 2, leave the hybrid zoom.
Ok 4.16.4, with Mini2,
product.camera.isHybridZoomSupported==true
You can even get the hybrid zoom spec with
product.camera.getHybridZoomSpec
.But when you try to set the zoom with
You get an error.
Digital zoom works fine.
It would be better if
product.camera.isHybridZoomSupported
returnedfalse
. Right now I just use