Hi, we have a requirement for setting up and using discovery server for streaming in linux. I came to know that we need to create a ndi-config.v1.json in $HOME/.newtek/ folder with the values shown below. Can someone explain what are the values and how they are used? Or is there a documentation regarding this? I couldn't find anything in the SDK documentation.
Code:
{
"ndi": {
"tcp": {
"send": {},
"recv": {
"enable": true
}
},
"groups": {
"send": "Public,",
"recv": "Public,"
},
"unicast": {
"send": {},
"recv": {
"enable": true
}
},
"networks": {
"ips": "",
"discovery": ""
},
"multicast": {
"send": {
"ttl": 1,
"enable": true,
"netmask": "255.255.0.0",
"netprefix": "239.255.0.0"
},
"recv": {}
}
}
}
Bookmarks