37 lines
778 B
JSON
37 lines
778 B
JSON
{
|
|
"queue": { "size": 8, "strategy": "drop_oldest" },
|
|
"graphs": [
|
|
{
|
|
"name": "cam1",
|
|
"nodes": [
|
|
{
|
|
"id": "in_cam1",
|
|
"type": "input_rtsp",
|
|
"role": "source",
|
|
"enable": true,
|
|
"url": "rtsp://user:pass@ip/stream1",
|
|
"fps": 25,
|
|
"width": 1920,
|
|
"height": 1080
|
|
},
|
|
{
|
|
"id": "pub_cam1",
|
|
"type": "publish",
|
|
"role": "sink",
|
|
"enable": true,
|
|
"codec": "h264",
|
|
"fps": 25,
|
|
"gop": 50,
|
|
"bitrate_kbps": 4000,
|
|
"outputs": [
|
|
{ "proto": "rtsp", "port": 8554, "path": "/live/cam1" }
|
|
]
|
|
}
|
|
],
|
|
"edges": [
|
|
["in_cam1", "pub_cam1"]
|
|
]
|
|
}
|
|
]
|
|
}
|