forked from OpenNetLab/AlphaRTC
-
Notifications
You must be signed in to change notification settings - Fork 1
/
receiver.json
57 lines (57 loc) · 1.29 KB
/
receiver.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"serverless_connection": {
"autoclose": 20,
"sender": {
"enabled": false
},
"receiver": {
"enabled": true,
"listening_ip": "0.0.0.0",
"listening_port": 8000
}
},
"bwe_feedback_duration": 200,
"onnx": {
"onnx_model_path": "onnx-model.onnx"
},
"video_source": {
"video_disabled": {
"enabled": true
},
"webcam": {
"enabled": false
},
"video_file": {
"enabled": false,
"height": 240,
"width": 320,
"fps": 10,
"file_path": "testmedia/test.yuv"
}
},
"audio_source": {
"microphone": {
"enabled": false
},
"audio_file": {
"enabled": true,
"file_path": "testmedia/test.wav"
}
},
"save_to_file": {
"enabled": true,
"audio": {
"file_path": "outaudio.wav"
},
"video": {
"width": 320,
"height": 240,
"fps": 10,
"file_path": "outvideo.yuv"
}
},
"logging": {
"enabled": true,
"log_output_path": "webrtc.log"
}
}