gaindb node

This commit is contained in:
itten
2026-07-09 20:39:41 +03:00
parent 30202e112e
commit 8f28b2f768
4 changed files with 87 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{
"nodes": [
{ "id": "testpattern", "type": "testpattern", "params": { "pattern": "bars" } },
{ "id": "gaindb", "type": "gaindb", "params": {} },
{ "id": "ndiout", "type": "ndiout", "params": {} }
],
"edges": [
{
"from": "testpattern", "from_port": "video_flow_id",
"to": "ndiout", "to_port": "video_flow_id",
"format": { "kind": "video", "width": 1920, "height": 1080, "fps_num": 25, "fps_den": 1 }
},
{
"from": "testpattern", "from_port": "audio_flow_id",
"to": "gaindb", "to_port": "audio_in_flow_id",
"format": { "kind": "audio", "sample_rate": 48000, "channels": 2, "bit_depth": 32 }
},
{
"from": "gaindb", "from_port": "audio_out_flow_id",
"to": "ndiout", "to_port": "audio_flow_id",
"format": { "kind": "audio", "sample_rate": 48000, "channels": 2, "bit_depth": 32 }
}
]
}