_autoBracket
Overview
Multi bracket shooting setting.
Can be acquired by camera.getOptions and set by camera.setOptions.
_bracketNumber is the only supported value that can be acquired by camera.getOptions.
Support model
Z1 | V | SC | S |
---|---|---|---|
All | All | v1.10 or later | v01.82 or later |
Support value
Key | Description |
---|---|
_bracketNumber | Number of shots in multi bracket shooting. 2 to 13 (RICOH THETA V firmware v2.50.1 or prior); 2 to 19 (RICOH THETA V firmware v3.00.1 or after). |
_bracketParameters | Parameter array specified for multi bracket shooting. Specify iso, shutterSpeed, and _colorTemperature for RICOH THETA V firmware v2.50.1 or prior; or specify iso *, shutterSpeed *, _colorTemperature *, exposureProgram, aperture *, exposureCompensation *, and whiteBalance for RICOH THETA V firmware v3.00.1 or later. |
*: Optional
Example
Options (for RICOH THETA V firmware v2.50.1 or prior)
{
"_autoBracket": {
"_bracketNumber": 3,
"_bracketParameters": [
{
"shutterSpeed": 0.004,
"iso": 400,
"_colorTemperature": 5100
},
{
"shutterSpeed": 0.004,
"iso": 320,
"_colorTemperature": 5100
},
{
"shutterSpeed": 0.004,
"iso": 2500,
"_colorTemperature": 5000
}
]
}
}
Options (for RICOH THETA V firmware v3.00.1 or later)
{
"_autoBracket": {
"_bracketNumber": 2,
"_bracketParameters": [
{
"aperture": 2.1,
"_colorTemperature": 5000,
"exposureCompensation": 0,
"exposureProgram": 1,
"iso": 400,
"shutterSpeed": 0.004,
"whiteBalance": "auto"
},
{
"aperture": 2.1,
"_colorTemperature": 5000,
"exposureCompensation": 0,
"exposureProgram": 1,
"iso": 400,
"shutterSpeed": 0.004,
"whiteBalance": "auto"
}
],
}
}