-
Notifications
You must be signed in to change notification settings - Fork 6
/
default_config.json
102 lines (102 loc) · 2.57 KB
/
default_config.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"source": "rtmp://path/to/source/stream",
"target_host": "rtmp://path/to/target/stream",
"target_app": "target_app",
"target_stream": "demo_stream_$width_$height_$bitrate_kbps",
"sd_streams": [
{
"width": 1440,
"height": 1080,
"bitrate": 2200,
"audio_codec": "copy",
"video_codec": "libx264"
},
{
"width": 960,
"height": 720,
"bitrate": 1000,
"audio_codec": "copy",
"video_codec": "libx264"
},
{
"width": 640,
"height": 480,
"bitrate": 600,
"audio_codec": "copy",
"video_codec": "libx264"
},
{
"width": 480,
"height": 360,
"bitrate": 300,
"audio_codec": "libfdk_aac",
"audio_bitrate": 96,
"video_codec": "libx264"
},
{
"width": 320,
"height": 240,
"bitrate": 150,
"audio_codec": "libfdk_aac",
"audio_bitrate": 96,
"video_codec": "libx264"
},
{
"width": 214,
"height": 160,
"bitrate": 64,
"audio_codec": "libfdk_aac",
"audio_bitrate": 48,
"video_codec": "libx264"
}
],
"hd_streams": [
{
"width": 1920,
"height": 1080,
"bitrate": 2200,
"audio_codec": "copy",
"video_codec": "libx264"
},
{
"width": 1280,
"height": 720,
"bitrate": 1200,
"audio_codec": "copy",
"video_codec": "libx264"
},
{
"width": 854,
"height": 480,
"bitrate": 600,
"audio_codec": "copy",
"video_codec": "libx264"
},
{
"width": 640,
"height": 360,
"bitrate": 300,
"audio_codec": "libfdk_aac",
"audio_bitrate": 96,
"video_codec": "libx264"
},
{
"width": 426,
"height": 240,
"bitrate": 150,
"audio_codec": "libfdk_aac",
"audio_bitrate": 96,
"video_codec": "libx264"
},
{
"width": 284,
"height": 160,
"bitrate": 10,
"audio_codec": "libfdk_aac",
"audio_bitrate": 48,
"video_codec": "libx264"
}
],
"max_retries": 90,
"max_retries_delay_sec": 10
}