查询直播流信息
接口描述
查询目标直播流基本信息和配置信息
请求参数
GET /v2/hubs/<hub>/streams/<encodedStreamTitle>
Host: pili.qiniuapi.com
Authorization: <QiniuToken>
Content-Type: application/x-www-form-urlencoded
参数 | 类型 | 必填 | 描述 |
---|---|---|---|
hub | string | 是 | 直播空间名 |
encodedStreamTitle | string | 是 | 经过base64编码的直播流名 |
返回数据
参数 | 类型 | 描述 |
---|---|---|
createdAt | int64 | 直播流创建时间,Unix 时间戳 |
updatedAt | int64 | 直播流更新时间,Unix 时间戳,对一个流的配置做修改操作会更新这个值 |
expireAt | int64 | 直播流过期时间,默认流过期时间为15天,Unix 时间戳,过期的流会被自动清除。如您设置的默认存储过期时间是 N 天,那么一个流持续 N 天不推流就会被自动清除 |
disabledTill | int | 禁播结束时间,Unix 时间戳,-1 表示永久禁播 |
converts | string[] | 转码配置 |
watermark | bool | 是否开启水印 |
publishSecurity | string | 推流鉴权类型 |
publishKey | string | 推流密钥 |
nropEnable | bool | 是否开启鉴黄 |
示例
请求体:
GET /v2/hubs/test/streams/dGltZXN0YW1w HTTP/1.1
Host: pili.qiniuapi.com
Authorization: <QiniuToken>
Content-Type: application/x-www-form-urlencoded
返回体:
200 OK
{
"createdAt": 1631796534,
"updatedAt": 1634205648,
"expireAt": 1730108940,
"disabledTill": 0,
"converts": [
"480p",
"720p"
],
"watermark": false,
"publishSecurity": "",
"publishKey": "",
"nropEnable": false,
}
SDK
七牛云 SDK 已集成该接口功能,可以更方便的调用,前往下载
文档反馈
(如有产品使用问题,请 提交工单)