Overview
Menu

CreateWorkflow

1. API Description

Domain name for API request: mps.tencentcloudapi.com.

This API is used to create a workflow for media files uploaded to a specified COS bucket. A workflow may include the following tasks:

  1. Video transcoding (with watermark)
  2. Animated image generating
  3. Time point screencapturing
  4. Sampled screencapturing
  5. Image sprite generating
  6. Adaptive bitrate streaming
  7. Intelligent content moderation (detection of pornographic and sensitive content)
  8. Intelligent content analysis (labeling, categorization, thumbnail generation, frame-specific labeling)
  9. Intelligent content recognition (face, full text, text keyword, full speech, and speech keyword)

Note: A workflow is disabled upon creation. You need to manually enable it.

A maximum of 200 requests can be initiated per second for this API.

We recommend you to use API Explorer
Try it
API Explorer provides a range of capabilities, including online call, signature authentication, SDK code generation, and API quick search. It enables you to view the request, response, and auto-generated examples.

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 NameRequiredTypeDescription
ActionYesStringCommon Params. The value used for this API: CreateWorkflow.
VersionYesStringCommon Params. The value used for this API: 2019-06-12.
RegionNoStringCommon Params. This parameter is not required for this API.
WorkflowNameYesStringWorkflow name of up to 128 characters, which must be unique for the same user.
TriggerYesWorkflowTriggerTriggering rule bound to a workflow. If an uploaded video hits the rule for the object, the workflow will be triggered.
OutputStorageNoTaskOutputStorageThe location to save the output file of media processing. If this parameter is left empty, the storage location in Trigger will be inherited.
OutputDirNoStringThe directory to save the media processing output file, which must start and end with /, such as /movie/201907/.
If you do not specify this, the file will be saved to the trigger directory.
MediaProcessTaskNoMediaProcessTaskInputThe media processing parameters to use.
AiContentReviewTaskNoAiContentReviewTaskInputType parameter of a video content audit task.
AiAnalysisTaskNoAiAnalysisTaskInputVideo content analysis task parameter.
AiRecognitionTaskNoAiRecognitionTaskInputType parameter of a video content recognition task.
TaskNotifyConfigNoTaskNotifyConfigEvent notification configuration for a task. If this parameter is left empty, no event notifications will be obtained.
TaskPriorityNoIntegerWorkflow priority. The higher the value, the higher the priority. Value range: [-10, 10]. If this parameter is left empty, 0 will be used.

3. Output Parameters

Parameter NameTypeDescription
WorkflowIdIntegerWorkflow ID.
RequestIdStringThe unique request ID, which is returned for each request. RequestId is required for locating a problem.

4. Example

Example1 Setting a transcoding rule

This example shows you how to set a transcoding rule named "trans-100020-100030-100040" to process the content in the TopRankVideo-125xxx88 bucket according to the transcoding templates 100020, 100030, and 100040.

Input Example

https://mps.tencentcloudapi.com/?Action=CreateWorkflow
&WorkflowName=trans-100020-100030-100040
&Trigger.Type=CosFileUpload
&Trigger.CosFileUploadTrigger.Bucket=TopRankVideo-125xxx88
&Trigger.CosFileUploadTrigger.Region=ap-chongqing
&Trigger.CosFileUploadTrigger.Dir=/movie/201907/
&MediaProcessTask.TranscodeTaskSet.0.Definition=100020
&MediaProcessTask.TranscodeTaskSet.1.Definition=100030
&MediaProcessTask.TranscodeTaskSet.2.Definition=100040
&<Common request parameters>

Output Example

{
    "Response": {
        "RequestId": "6ca31e3a-6b8e-4b4e-9256-fdc700064ef3",
        "WorkflowId": 157482
    }
}

Example2 Setting a sampled screenshot rule

This example shows you how to set a screenshot rule named "snapshot" to process the content in the TopRankVideo-125xxx88 bucket according to the screenshot template 100010.

Input Example

https://mps.tencentcloudapi.com/?Action=CreateWorkflow
&WorkflowName=snapshot
&Trigger.Type=CosFileUpload
&Trigger.CosFileUploadTrigger.Bucket=TopRankVideo-125xxx88
&Trigger.CosFileUploadTrigger.Region=ap-chongqing
&Trigger.CosFileUploadTrigger.Dir=/movie/201907/
&MediaProcessTask.SampleSnapshotTaskSet.0.Definition=100010
&<Common request parameters>

Output Example

{
    "Response": {
        "RequestId": "6ca31e3a-6b8e-4b4e-9256-fdc700064ef3",
        "WorkflowId": 3457482
    }
}

5. Developer Resources

SDK

TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.

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 CodeDescription
FailedOperation.CosStatusInavlidOperation failed: COS service is suspended.
FailedOperation.InvalidMpsUserOperation failed: unauthorized MPS user.
InternalErrorInternal error.
InvalidParameterValueIncorrect parameter value.
LimitExceeded.TooMuchTemplateLimit reached: the number of templates exceeds the limit.
ResourceNotFound.CosBucketNameInvalidThe resource does not exist: invalid COS bucket name.
ResourceNotFound.CosBucketNotExistThe resource does not exist: the COS bucket does not exist.