QX1, Manual Shoot mode (M) via API

前端 未结 3 884
予麋鹿
予麋鹿 2021-02-06 18:36

Very need M (Manual) Exposure mode on QX1. I was searching for an answer to the my question, but don\'t found the exact answer. Can I choose the full manual Exp

3条回答
  •  心在旅途
    2021-02-06 19:24

    No, you can't set Manual mode with the current firmware on a QX1 camera.

    You are supposed to use the getAvailableExposureMode or getSupportedExposureMode API methods to retrieve the supported modes (and optionally display them to the user), then use one of only those modes in setExposureMode.

    But Manual mode is not supported by the QX1 camera, so it's not returned by the getSupported/Available methods and that's why the API returns the error to the setExposureMode call.

    The API is intended to support several SONY cameras with several different features. For each property you have the following API methods:

    • getSupportedProperty -> Returns the property values supported by the camera.
    • getProperty -> Returns the actual value for the property
    • setProperty -> Allows to set a new value for the property
    • getAvailableProperty -> Returns current value and supported values.

    That way, if the app is well coded it will support all the cameras.

    So, it's not an API problem but a firmware one. The current firmware for the QX1 does not support Manual mode.

    There's not an official firmware update yet :(

    https://esupport.sony.com/US/p/model-home.pl?mdl=ILCEQX1&LOC=3#/downloadTab

提交回复
热议问题