56 lines
1.1 KiB
JSON
56 lines
1.1 KiB
JSON
{
|
|
"global": {
|
|
"hot_reload": { "enable": true }
|
|
},
|
|
"queue": { "size": 8, "strategy": "drop_oldest" },
|
|
|
|
"templates": {
|
|
"transcode_gateway": {
|
|
"nodes": [
|
|
{
|
|
"id": "in",
|
|
"type": "input_rtsp",
|
|
"role": "source",
|
|
"enable": true,
|
|
"url": "${url}",
|
|
"fps": 25,
|
|
"width": 1920,
|
|
"height": 1080,
|
|
"use_mpp": false,
|
|
"use_ffmpeg": true,
|
|
"force_tcp": true
|
|
},
|
|
{
|
|
"id": "pub",
|
|
"type": "publish",
|
|
"role": "sink",
|
|
"enable": true,
|
|
"codec": "h264",
|
|
"fps": 25,
|
|
"gop": 50,
|
|
"bitrate_kbps": 2000,
|
|
"use_mpp": true,
|
|
"use_ffmpeg_mux": true,
|
|
"outputs": [
|
|
{ "proto": "rtsp_server", "port": 8554, "path": "/live/${name}" }
|
|
]
|
|
}
|
|
],
|
|
"edges": [
|
|
["in", "pub"]
|
|
]
|
|
}
|
|
},
|
|
|
|
"instances": [
|
|
{
|
|
"name": "cam1",
|
|
"template": "transcode_gateway",
|
|
"params": {
|
|
"name": "cam1",
|
|
"url": "rtsp://10.0.0.9:8554/cam"
|
|
}
|
|
}
|
|
]
|
|
}
|