We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 441f02e + d1ffdbe commit bdad4bcCopy full SHA for bdad4bc
pili/stream_model.go
@@ -157,11 +157,29 @@ type GetStreamLiveStatusResponse struct {
157
// StreamLiveStatus 直播流实时状态
158
StreamLiveStatus
159
160
+ // 最近30秒内GOP最大值,单位:毫秒
161
+ MaxGop int `json:"maxGop"`
162
+
163
+ // 最近30秒内GOP平均值,单位:毫秒
164
+ AvgGop int `json:"avgGop"`
165
166
// VideoBitRate 视频码率,单位:bps
167
VideoBitRate int `json:"videoBitRate"`
168
169
// AudioBitRate 音频码率,单位:bps
170
AudioBitRate int `json:"audioBitRate"`
171
172
+ // 播放人数
173
+ PlayCount int64 `json:"playCount"`
174
175
+ // 播放带宽
176
+ Bandwidth int64 `json:"bandwidth"`
177
178
+ // 推流端所在地区
179
+ Location string `json:"location"`
180
181
+ // 推流端所在运营商
182
+ Isp string `json:"isp"`
183
}
184
185
// BatchGetStreamLiveStatusRequest 批量查询直播实时状态请求参数
0 commit comments