Domain name for API request: mdl.tencentcloudapi.com.
This API is used to query the transcoding information of StreamLive streams.
A maximum of 20 requests can be initiated per second for this API.
The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.
This document describes the parameters for Signature V1. It's recommended to use the V3 signature, which provides higher security. Note that for Signature V3, the common parameters need to be placed in the HTTP Header. See details.
Parameter Name | Required | Type | Description |
---|---|---|---|
Action | Yes | String | Common parameter. The value used for this API: DescribeStreamLiveTranscodeDetail. |
Version | Yes | String | Common parameter. The value used for this API: 2020-03-26. |
Region | Yes | String | Common parameter. For more information, please see the list of regions supported by the product. |
StartDayTime | Yes | String | The query start time (UTC+8) in the format of yyyy-MM-dd. You can only query data in the last month (not including the current day). |
EndDayTime | Yes | String | The query end time (UTC+8) in the format of yyyy-MM-dd. You can only query data in the last month (not including the current day). |
ChannelId | No | String | The channel ID (optional). |
PageNum | No | Integer | The number of pages. Default value: 1. The value cannot exceed 100. |
PageSize | No | Integer | The number of records per page. Default value: 10. Value range: 1-1000. |
Parameter Name | Type | Description |
---|---|---|
Infos | Array of DescribeTranscodeDetailInfo | A list of the transcoding information. |
PageNum | Integer | The number of the current page. |
PageSize | Integer | The number of records per page. |
TotalNum | Integer | The total number of records. |
TotalPage | Integer | The total number of pages. |
RequestId | String | The unique request ID, which is returned for each request. RequestId is required for locating a problem. |
POST / HTTP/1.1
Host: mdl.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: DescribeStreamLiveTranscodeDetail
<Common request parameters>
{
"EndDayTime": "2022-01-01",
"ChannelId": "",
"PageNum": 1,
"PageSize": 100,
"StartDayTime": "2022-01-01"
}
{
"Response": {
"TotalPage": 10,
"PageNum": 1,
"PageSize": 10,
"RequestId": "xx",
"Infos": [
{
"Type": "merge_stream",
"Bitrate": 1000,
"PushDomain": "",
"ChannelId": "12AB3E5F",
"ModuleCodec": "liveprocessor_H264",
"StartTime": "2022-01-01 01:00:00",
"Duration": 10,
"EndTime": "2022-01-01 01:00:10",
"Resolution": "480P"
}
],
"TotalNum": 100
}
}
TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.
The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.
Error Code | Description |
---|---|
InternalError | Internal error. |
InvalidParameter.ChannelId | Channel ID error. |
InvalidParameter.EndTime | Invalid EndTime . |
InvalidParameter.Id | Invalid Id . |
InvalidParameter.PageNum | Page number error. |
InvalidParameter.StartTime | Invalid StartTime . |
Was this page helpful?