Первоначальная версия VidConf

This commit is contained in:
2026-07-23 01:04:01 +03:00
commit 896455381a
335 changed files with 61527 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{
"event": "egress_ended",
"id": "{event_id}",
"createdAt": "1720000004",
"egressInfo": {
"egressId": "{egress_id}",
"roomName": "{room_name}",
"status": "EGRESS_COMPLETE",
"startedAt": "1720000002000000000",
"endedAt": "1720000004000000000",
"file": {
"filename": "{file_path}",
"location": "{file_path}"
}
}
}

View File

@@ -0,0 +1,13 @@
{
"event": "egress_ended",
"id": "{event_id}",
"createdAt": "1720000004",
"egressInfo": {
"egressId": "{egress_id}",
"roomName": "{room_name}",
"status": "EGRESS_FAILED",
"startedAt": "1720000002000000000",
"endedAt": "1720000004000000000",
"error": "pipeline failure"
}
}

View File

@@ -0,0 +1,14 @@
{
"event": "participant_joined",
"id": "{event_id}",
"createdAt": "1720000001",
"room": {
"sid": "RM_test_joined",
"name": "{room_name}"
},
"participant": {
"sid": "PA_test",
"identity": "{identity}",
"name": "Test Participant"
}
}

View File

@@ -0,0 +1,14 @@
{
"event": "participant_left",
"id": "{event_id}",
"createdAt": "1720000002",
"room": {
"sid": "RM_test_left",
"name": "{room_name}"
},
"participant": {
"sid": "PA_test",
"identity": "{identity}",
"name": "Test Participant"
}
}

View File

@@ -0,0 +1,9 @@
{
"event": "room_finished",
"id": "{event_id}",
"createdAt": "1720000003",
"room": {
"sid": "RM_test_finished",
"name": "{room_name}"
}
}

View File

@@ -0,0 +1,9 @@
{
"event": "room_started",
"id": "{event_id}",
"createdAt": "1720000000",
"room": {
"sid": "RM_test_started",
"name": "{room_name}"
}
}

View File

@@ -0,0 +1,19 @@
{
"event": "track_published",
"id": "{event_id}",
"createdAt": "1720000002",
"room": {
"sid": "RM_test_track",
"name": "{room_name}"
},
"participant": {
"sid": "PA_test",
"identity": "{identity}",
"name": "Test Participant"
},
"track": {
"sid": "{track_sid}",
"type": "AUDIO",
"source": "MICROPHONE"
}
}

View File

@@ -0,0 +1,19 @@
{
"event": "track_published",
"id": "{event_id}",
"createdAt": "1720000002",
"room": {
"sid": "RM_test_track",
"name": "{room_name}"
},
"participant": {
"sid": "PA_test",
"identity": "{identity}",
"name": "Test Participant"
},
"track": {
"sid": "{track_sid}",
"type": "VIDEO",
"source": "CAMERA"
}
}