Last active
June 26, 2016 17:57
-
-
Save trolleway/522144ca201a3803f10f to your computer and use it in GitHub Desktop.
Ricoh Theta S turn off shutter sound
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
POST /osc/commands/execute | |
{ | |
"name": "camera.startSession", | |
"parameters": {} | |
} | |
#shoot | |
192.168.1.1/osc/commands/execute | |
{ | |
"name": "camera.takePicture", | |
"parameters": { | |
"sessionId": "SID_0001" | |
} | |
} | |
#check volume state | |
POST /osc/commands/execute | |
{ | |
"name": "camera.getOptions", | |
"parameters": { | |
"sessionId": "SID_0001", | |
"optionNames": [ | |
"fileFormat", | |
"fileFormatSupport","_shutterVolume" | |
] | |
} | |
} | |
POST /osc/commands/execute | |
{ | |
"name": "camera.setOptions", | |
"parameters": { | |
"sessionId": "SID_0001", | |
"options": { | |
"_shutterVolume": 0 | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment