audio works, holy shit

This commit is contained in:
itten
2026-07-04 03:24:20 +03:00
parent 96475acf62
commit b2534efb0f
4 changed files with 258 additions and 63 deletions
+7 -2
View File
@@ -1,13 +1,18 @@
{
"nodes": [
{ "id": "videoin", "type": "videoin", "params": {} },
{ "id": "videoin", "type": "videoin", "params": {"file": "/home/itten/test-vid/2.ts"} },
{ "id": "ndiout", "type": "ndiout", "params": {} }
],
"edges": [
{
"from": "videoin", "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 }
"format": { "kind": "video", "width": 1920, "height": 1080, "fps_num": 60, "fps_den": 1 }
},
{
"from": "videoin", "from_port": "audio_flow_id",
"to": "ndiout", "to_port": "audio_flow_id",
"format": { "kind": "audio", "sample_rate": 44100, "channels": 2, "bit_depth": 32 }
}
]
}