obs-set-input-audio-sync-offset
Adjust audio sync offset for OBS inputs to correct timing issues between audio and video sources during live streaming or recording.
Instructions
Sets the audio sync offset of an input
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputAudioSyncOffset | Yes | New audio sync offset in milliseconds | |
inputName | Yes | Name of the input to set the audio sync offset of |
Input Schema (JSON Schema)
{
"properties": {
"inputAudioSyncOffset": {
"description": "New audio sync offset in milliseconds",
"maximum": 20000,
"minimum": -950,
"type": "number"
},
"inputName": {
"description": "Name of the input to set the audio sync offset of",
"type": "string"
}
},
"required": [
"inputName",
"inputAudioSyncOffset"
],
"type": "object"
}