update-rtmp 接口
修改 RTMP 直播推流配置
请求方式
POST http://ip/mwapi/update-rtmp
{
"id":1000,
"type":1,
"name":"rtmp",
"url":"10.10.7.10/live/",
"streamKey":"yxy",
"authentication":false,
"userName":"userName",
"password":"password",
"autoSwitch":false,
"encoder":{
"codeType":0,
"encodingMode":1,
"videoBitrate":2048,
"keyframeInterval":2,
"duration":166666,
"resolution":"1920x1080",
"audioBitrate":128,
"profile":0
}
}
参数 | 说明 |
---|---|
id | 推流配置ID |
type | 推流类型。1:RTMP |
name | 推流名称 |
url | 推流地址 |
streamKey | 推流秘钥 |
autoSwitch | 是否为自动启动的推流配置,可通过按键启动其开始直播推流,true:是 false:否 |
authentication | 是否需要鉴权,true:是 false:否 |
userName | 用户名,仅在需要鉴权时生效 |
password | 密码,仅在需要鉴权时生效 |
effective | 是否为完整的直播配置,true:是 false:否 |
encoder | 编码配置参数 |
返回数据
JSON 结构如下:
{
"status": 0,
}
属性 | 说明 |
---|---|
status | 返回状态。0:请求成功,返回其它值请参考 API 状态码。 |