-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduction_benchmarks.json
More file actions
148 lines (148 loc) · 4.06 KB
/
production_benchmarks.json
File metadata and controls
148 lines (148 loc) · 4.06 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "Production Streaming Benchmarks",
"description": "Real-world streaming scenarios for Twitch, YouTube, and Zoom",
"scenarios": [
{
"type": "baseline",
"name": "Baseline (Idle)",
"duration": 60,
"description": "System idle baseline for savings calculations"
},
{
"type": "single",
"name": "Twitch 1080p 60fps @ 6000k",
"bitrate": "6000k",
"resolution": "1920x1080",
"fps": 60,
"encoder": "h264",
"stabilization": 15,
"duration": 300,
"cooldown": 20,
"description": "Twitch recommended settings for 1080p60 gaming streams",
"quality_target": "VMAF>=85"
},
{
"type": "single",
"name": "Twitch 1080p 60fps @ 6000k (x264 fast)",
"bitrate": "6000k",
"resolution": "1920x1080",
"fps": 60,
"encoder": "h264",
"preset": "fast",
"stabilization": 15,
"duration": 300,
"cooldown": 20,
"description": "Twitch 1080p60 with x264 fast preset (CPU optimized)",
"quality_target": "VMAF>=85"
},
{
"type": "single",
"name": "YouTube 4K 60fps @ 20000k",
"bitrate": "20000k",
"resolution": "3840x2160",
"fps": 60,
"encoder": "h264",
"stabilization": 20,
"duration": 300,
"cooldown": 30,
"description": "YouTube recommended bitrate for 4K60 content",
"quality_target": "VMAF>=90"
},
{
"type": "single",
"name": "YouTube 4K 30fps @ 13000k",
"bitrate": "13000k",
"resolution": "3840x2160",
"fps": 30,
"encoder": "h264",
"stabilization": 20,
"duration": 300,
"cooldown": 30,
"description": "YouTube recommended bitrate for 4K30 content",
"quality_target": "VMAF>=90"
},
{
"type": "single",
"name": "YouTube 1440p 60fps @ 12000k",
"bitrate": "12000k",
"resolution": "2560x1440",
"fps": 60,
"encoder": "h264",
"stabilization": 15,
"duration": 300,
"cooldown": 20,
"description": "YouTube 1440p60 (2K) streaming",
"quality_target": "VMAF>=88"
},
{
"type": "single",
"name": "Zoom HD 720p 30fps @ 1500k",
"bitrate": "1500k",
"resolution": "1280x720",
"fps": 30,
"encoder": "h264",
"stabilization": 10,
"duration": 300,
"cooldown": 15,
"description": "Zoom HD video conferencing settings",
"quality_target": "VMAF>=80"
},
{
"type": "single",
"name": "Zoom Group HD 720p 30fps @ 2500k",
"bitrate": "2500k",
"resolution": "1280x720",
"fps": 30,
"encoder": "h264",
"stabilization": 10,
"duration": 300,
"cooldown": 15,
"description": "Zoom group call HD quality",
"quality_target": "VMAF>=82"
},
{
"type": "single",
"name": "Facebook Live 1080p 30fps @ 4000k",
"bitrate": "4000k",
"resolution": "1920x1080",
"fps": 30,
"encoder": "h264",
"stabilization": 15,
"duration": 300,
"cooldown": 20,
"description": "Facebook Live recommended 1080p settings",
"quality_target": "VMAF>=85"
},
{
"type": "single",
"name": "LinkedIn Live 1080p 30fps @ 5000k",
"bitrate": "5000k",
"resolution": "1920x1080",
"fps": 30,
"encoder": "h264",
"stabilization": 15,
"duration": 300,
"cooldown": 20,
"description": "LinkedIn Live professional streaming",
"quality_target": "VMAF>=87"
},
{
"type": "single",
"name": "Multi-resolution ABR Ladder (1080p+720p+480p)",
"bitrate": "5000k",
"resolution": "1920x1080",
"fps": 30,
"encoder": "h264",
"stabilization": 15,
"duration": 300,
"cooldown": 20,
"description": "Adaptive Bitrate Ladder for HLS/DASH",
"outputs": [
{"resolution": "1920x1080", "fps": 30, "bitrate": "5000k"},
{"resolution": "1280x720", "fps": 30, "bitrate": "2500k"},
{"resolution": "854x480", "fps": 30, "bitrate": "1000k"}
],
"quality_target": "VMAF>=85"
}
]
}