mirror of
https://github.com/steelbrain/ffmpeg-over-ip.git
synced 2024-10-12 01:34:56 +03:00
21 lines
713 B
JSON
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
|
|
}
|