查询直播录制内容。
使用说明
先获取主播流域名,再调用本接口查询直播录制内容。
本接口的直播录制内容是以一次录制任务维度的,具体录制文件请使用查询所有录制索引文件和查询单个录制索引文件接口查询
QPS限制
本接口的单用户QPS限制为50次/秒。超过限制,API调用会被限流,这可能会影响您的业务,请合理调用。更多信息,请参见QPS限制。
调试
您可以在OpenAPI Explorer中直接运行该接口,免去您计算签名的困扰。运行成功后,OpenAPI Explorer可以自动生成SDK代码示例。
请求参数
名称 |
类型 |
是否必选 |
示例值 |
描述 |
Action | String | 是 | DescribeLiveStreamRecordContent | 系统规定参数。取值:DescribeLiveStreamRecordContent。 |
DomainName | String | 是 | example.com | 主播流域名。 |
AppName | String | 是 | liveApp**** | 播流所属应用名称。 |
StreamName | String | 是 | liveStream**** | 播流名称。 |
StartTime | String | 是 | 2017-12-21T08:00:00Z | 开始时间。仅能查询6个月内的记录。格式为:yyyy-MM-ddTHH:mm:ssZ(UTC时间)。 |
EndTime | String | 是 | 2017-12-22T08:00:00Z | 结束时间。与StartTime的间隔时间不能超过4天。格式为:yyyy-MM-ddTHH:mm:ssZ(UTC时间)。 |
返回数据
名称 |
类型 |
示例值 |
描述 |
RequestId | String | 62136AE6-7793-45ED-B14A-60D19A9486D3 | 请求ID。 |
RecordContentInfoList | Array of RecordContentInfo | 录制内容列表。 |
|
RecordContentInfo | |||
EndTime | String | 2015-12-01T07:46:00Z | 结束时间。格式为:yyyy-MM-ddTHH:mm:ssZ(UTC时间)。 |
StartTime | String | 2015-12-01T07:36:00Z | 开始时间。格式为:yyyy-MM-ddTHH:mm:ssZ(UTC时间)。 |
Duration | Float | 10 | 录制时长。单位:秒。 |
OssBucket | String | liveBucket**** | OSS存储的Bucket名称。 |
OssObjectPrefix | String | record/{Date}/{UnixTimestamp}_{Sequence} | OSS存储的录制文件名的规则。 |
OssEndpoint | String | cn-oss-****.aliyuncs.com | OSS存储的Endpoint名称。 |
说明 访问OSS资源的URL地址组成,请参见如何获取单个或多个文件的URL?
示例
请求示例
http(s)://live.aliyuncs.com/?Action=DescribeLiveStreamRecordContent
&AppName=liveApp****
&DomainName=example.com
&EndTime=2017-12-22T08:00:00Z
&StartTime=2017-12-21T08:00:00Z
&StreamName=liveStream****
&<公共请求参数>
正常返回示例
XML
格式
HTTP/1.1 200 OK
Content-Type:application/xml
<DescribeLiveStreamRecordContentResponse>
<RequestId>62136AE6-7793-45ED-B14A-60D19A9486D3</RequestId>
<RecordContentInfoList>
<RecordContentInfo>
<EndTime>2015-12-01T07:46:00Z</EndTime>
<OssEndpoint>cn-oss-****.aliyuncs.com</OssEndpoint>
<StartTime>2015-12-01T07:36:00Z</StartTime>
<OssBucket>liveBucket****</OssBucket>
<Duration>10</Duration>
<OssObjectPrefix>record/{Date}/{UnixTimestamp}_{Sequence}</OssObjectPrefix>
</RecordContentInfo>
</RecordContentInfoList>
</DescribeLiveStreamRecordContentResponse>
JSON
格式
HTTP/1.1 200 OK
Content-Type:application/json
{
"DescribeLiveStreamRecordContentResponse" : {
"RequestId" : "62136AE6-7793-45ED-B14A-60D19A9486D3",
"RecordContentInfoList" : {
"RecordContentInfo" : {
"EndTime" : "2015-12-01T07:46:00Z",
"OssEndpoint" : "cn-oss-****.aliyuncs.com",
"StartTime" : "2015-12-01T07:36:00Z",
"OssBucket" : "liveBucket****",
"Duration" : 10,
"OssObjectPrefix" : "record/{Date}/{UnixTimestamp}_{Sequence}"
}
}
}
}
错误码
HttpCode |
错误码 |
错误信息 |
描述 |
400 | InvalidStartTime.Malformed | Specified StartTime is malformed. | StartTime参数错误,请您确认该StartTime参数是否正确。 |
400 | InvalidEndTime.Malformed | Specified EndTime is malformed. | 结束时间错误,请您确认结束时间是否正确。 |
400 | InvalidEndTime.Mismatch | Specified end time does not math the specified start time. | 结束时间与开始时间不匹配,请您确认时间的匹配度。 |
访问错误中心查看更多错误码。
文档内容是否对您有帮助?