Domain name for API request: mps.tencentcloudapi.com.
This API is used to initiate live stream processing tasks. Such tasks may include the following:
HTTP callbacks are supported for live stream processing events. Notifications can also be written in real time to and read from a CMQ queue. The output files of processing tasks are saved to the storage you specify.
A maximum of 100 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.
Parameter Name | Required | Type | Description |
---|---|---|---|
Action | Yes | String | Common Params. The value used for this API: ProcessLiveStream. |
Version | Yes | String | Common Params. The value used for this API: 2019-06-12. |
Region | No | String | Common Params. This parameter is not required for this API. |
Url | Yes | String | Live stream URL, which must be a live stream file address. RTMP, HLS, and FLV are supported. |
TaskNotifyConfig | Yes | LiveStreamTaskNotifyConfig | Event notification information of a task, which is used to specify the live stream processing result. |
OutputStorage | No | TaskOutputStorage | Target bucket of a live stream processing output file. This parameter is required if a file will be output. |
OutputDir | No | String | Target directory of a live stream processing output file, such as /movie/201909/ . If this parameter is left empty, the / directory will be used. |
AiContentReviewTask | No | AiContentReviewTaskInput | Type parameter of a video content audit task. |
AiRecognitionTask | No | AiRecognitionTaskInput | Type parameter of video content recognition task. |
AiAnalysisTask | No | AiAnalysisTaskInput | |
AiQualityControlTask | No | AiQualityControlTaskInput | Media quality inspection type task parameters. |
SessionId | No | String | The ID used for deduplication. If there was a request with the same ID in the last seven days, the current request will return an error. The ID can contain up to 50 characters. If this parameter is left empty or an empty string is entered, no deduplication will be performed. |
SessionContext | No | String | The source context which is used to pass through the user request information. The task flow status change callback will return the value of this field. It can contain up to 1,000 characters. |
ScheduleId | No | Integer | The live scheme ID. Note 1: OutputStorage ) and directory (OutputDir ) are specified for a subtask of the scheme, those output settings will be applied. u200c OutputStorage ) and directory (OutputDir ) are not specified for a subtask of the scheme, the output parameters specified for ProcessLiveStream (if any) will be applied. Note 2: If TaskNotifyConfig is specified when ProcessLiveStream is called, the specified settings will be applied instead of the default callback settings of the scheme. |
Parameter Name | Type | Description |
---|---|---|
TaskId | String | Task ID |
RequestId | String | The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem. |
This example shows you how to initiate a content recognition task for a live stream whose URL is http://www.abc.com/abc.m3u8
.
POST / HTTP/1.1
Host: mps.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: ProcessLiveStream
<Common request parameters>
{
"Url": "http://www.abc.com/abc.m3u8",
"AiRecognitionTask": {
"Definition": "10"
},
"TaskNotifyConfig": {
"CmqRegion": "gz",
"CmqModel": "Queue",
"QueueName": "queue-125717729292"
}
}
{
"Response": {
"RequestId": "5ca61e3a-6b8e-4b4e-9256-fdc701190064ef0",
"TaskId": "125xxxxxx07-live-procedure-813dc41e6fdc22dcf24aa6e9c61cp92"
}
}
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 |
---|---|
FailedOperation.GenerateResource | Resource generation failed. |
FailedOperation.InvalidMpsUser | Operation failed: unauthorized MPS user. |
InternalError | Internal error. |
InvalidParameter | Parameter error. |
InvalidParameterValue.Definition | Parameter error: Definition. |
InvalidParameterValue.Definitions | Parameter error: Definitions. |
InvalidParameterValue.SessionId | The deduplication ID already exists. The request is removed due to duplication. |
Was this page helpful?