-
Notifications
You must be signed in to change notification settings - Fork 171
Description
Hi, my current setup is M300 + H30.
I would like to know if (and how) it is possible to get the shutter speed, ISO and aperture currently set in the camera, when the exposure mode is set to Auto.
I tried DjiCameraManager_GetShutterSpeed
, DjiCameraManager_GetISO
and DjiCameraManager_GetAperture
, but they only can retrieve the current value when the exposure mode is manual. In particular they return:
DjiCameraManager_GetShutterSpeed
fails with error 141733920991DjiCameraManager_GetISO
returns 0 (=DJI_CAMERA_MANAGER_ISO_AUTO
)DjiCameraManager_GetAperture
returns 0 (which should not be a valid value)
From the remote I can see the shutter speed and ISO value also in Auto exposure mode, this is why I hope that this is possible from PSDK, too.
Additionally, I want to point out that I'm only able to set exposure modes 1 (DJI_CAMERA_MANAGER_EXPOSURE_MODE_PROGRAM_AUTO
) and 4 (DJI_CAMERA_MANAGER_EXPOSURE_MODE_EXPOSURE_MANUAL
). Modes 2 and 3 (shutter and aperture priority) both fail with error 141733920995.
Thank you!