Files
ffmpeg-over-ip/template.ffmpeg-over-ip.client.jsonc
2024-09-24 01:24:47 +04:00

21 lines
713 B
JSON

{
// This is a "jsonc" file and therefore supports comments in addition to standard JSON syntax
"log": "stdout", // type: "stdout" | "stderr" | any string (file path) | false
// Other possibilities:
"log": "$TMPDIR/ffmpeg-over-ip.server.log",
// ^ $TMPDIR is a special variable here, only supported in "log" config where it uses the operating system
// temp folder
"log": false,
// ^ This turns off logging completely
"log": "stdout",
"log": "stderr",
"log": "/var/log/messages.log",
"connectAddress": "192.168.20.1", // type: string
"connectPort": 5050, // type: number
"authSecret": "YOUR-CLIENT-PASSWORD-HERE" // type: string
// ^ This MUST match what you have in the server
}