obs-offset-media-input-cursor
Adjust the playback position of a media input in OBS Studio by offsetting the current cursor position by a specified number of milliseconds.
Instructions
Offsets the current cursor position of a media input
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputName | Yes | Name of the media input | |
mediaCursorOffset | Yes | Value to offset the current cursor position by (in milliseconds) |
Input Schema (JSON Schema)
{
"properties": {
"inputName": {
"description": "Name of the media input",
"type": "string"
},
"mediaCursorOffset": {
"description": "Value to offset the current cursor position by (in milliseconds)",
"type": "number"
}
},
"required": [
"inputName",
"mediaCursorOffset"
],
"type": "object"
}