22 lines
886 B
PowerShell
22 lines
886 B
PowerShell
@{
|
|
# Base UNC path for saved clips — a subfolder per username is created automatically
|
|
UNCPath = '\\server\ITCaptures'
|
|
|
|
# Directory path for script logs — supports %USERNAME% and other environment variables
|
|
# Each script writes its own log: OBSReplayBuffer.log, OBSReplayBuffer-Tray.log, OBSReplayBuffer-Save.log
|
|
LogPath = '\\server\ITLogs\%USERNAME%'
|
|
|
|
# Replay buffer duration in seconds (120 = 2 minutes)
|
|
BufferSeconds = 120
|
|
|
|
# OBS WebSocket port — must match obs-config/plugin_config/obs-websocket/config.json
|
|
WebSocketPort = 4455
|
|
|
|
# Full path to OBS executable (standard App Volumes / Program Files install)
|
|
OBSExecutable = 'C:\Program Files\obs-studio\bin\64bit\obs64.exe'
|
|
|
|
# Must match the profile folder name and scene collection filename
|
|
ProfileName = 'ITMonitor'
|
|
SceneCollection = 'ITMonitor'
|
|
}
|