Skip to content

Instantly share code, notes, and snippets.

@trolleway
Last active June 26, 2016 17:57
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trolleway/522144ca201a3803f10f to your computer and use it in GitHub Desktop.
Save trolleway/522144ca201a3803f10f to your computer and use it in GitHub Desktop.
Ricoh Theta S turn off shutter sound
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