obs-trigger-hotkey-by-key-sequence
Trigger OBS Studio hotkeys using key sequences to automate actions like starting streams or switching scenes without manual input.
Instructions
Triggers a hotkey using a sequence of keys
Input Schema
Name | Required | Description | Default |
---|---|---|---|
keyId | No | The OBS key ID to use | |
keyModifiers | No | Object containing key modifiers to apply |
Input Schema (JSON Schema)
{
"properties": {
"keyId": {
"description": "The OBS key ID to use",
"type": "string"
},
"keyModifiers": {
"additionalProperties": false,
"description": "Object containing key modifiers to apply",
"properties": {
"alt": {
"description": "Press ALT",
"type": "boolean"
},
"command": {
"description": "Press CMD (Mac)",
"type": "boolean"
},
"control": {
"description": "Press CTRL",
"type": "boolean"
},
"shift": {
"description": "Press Shift",
"type": "boolean"
}
},
"type": "object"
}
},
"type": "object"
}