ProcessLiveStream
1. API Description
Domain name for API request: mps.tencentcloudapi.com.
This API is used to initiate live stream processing tasks. Such tasks may include the following:
- Intelligent content moderation (detection of pornographic content in images and audio, detection of sensitive information)
- Intelligent content recognition (face, full text, text keyword, full speech, speech keyword, real-time speech translation, object recognition, game event tracking)
- Intelligent content analysis (real-time news splitting)
- Quality control, including recognizing live stream format, checking audio/video content for flickering, blur, low light, overexposure, black bars, white bars, black screen, white screen, noise, pixelation, QR code, etc., and no-reference scoring.
- Recording
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.
2. Input Parameters
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 | |
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. |
3. Output Parameters
Parameter Name | Type | Description |
---|---|---|
TaskId | String | Task ID |
RequestId | String | The unique request ID, which is returned for each request. RequestId is required for locating a problem. |
4. Example
Example1 Initiating a live stream recognition task
This example shows you how to initiate a content recognition task for a live stream whose URL is http://www.abc.com/abc.m3u8
.
Input Example
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"
}
}
Output Example
{
"Response": {
"RequestId": "5ca61e3a-6b8e-4b4e-9256-fdc701190064ef0",
"TaskId": "125xxxxxx07-live-procedure-813dc41e6fdc22dcf24aa6e9c61cp92"
}
}
5. Developer Resources
SDK
TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.
- Tencent Cloud SDK 3.0 for Python
- Tencent Cloud SDK 3.0 for Java
- Tencent Cloud SDK 3.0 for PHP
- Tencent Cloud SDK 3.0 for Go
- Tencent Cloud SDK 3.0 for Node.js
- Tencent Cloud SDK 3.0 for .NET
- Tencent Cloud SDK 3.0 for C++
Command Line Interface
6. Error Code
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.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. |