obs-set-media-input-cursor
Set the playback position of a media input in OBS Studio by specifying the cursor time in milliseconds, allowing precise control over video or audio playback timing.
Instructions
Sets the cursor position of a media input
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputName | Yes | Name of the media input | |
mediaCursor | Yes | New cursor position to set (in milliseconds) |
Input Schema (JSON Schema)
{
"properties": {
"inputName": {
"description": "Name of the media input",
"type": "string"
},
"mediaCursor": {
"description": "New cursor position to set (in milliseconds)",
"minimum": 0,
"type": "number"
}
},
"required": [
"inputName",
"mediaCursor"
],
"type": "object"
}