tencentcloud.MpsProcessMediaOperation
Explore with Pulumi AI
Provides a resource to create a mps process_media_operation
Example Usage
Process mps media through CMQ
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const output = new tencentcloud.CosBucket("output", {
bucket: `tf-bucket-mps-edit-media-output-${local.app_id}`,
forceClean: true,
acl: "public-read",
});
const object = tencentcloud.getCosBucketObject({
bucket: `keep-bucket-${local.app_id}`,
key: "/mps-test/test.mov",
});
const operation = new tencentcloud.MpsProcessMediaOperation("operation", {
inputInfo: {
type: "COS",
cosInputInfo: {
bucket: object.then(object => object.bucket),
region: "%s",
object: object.then(object => object.key),
},
},
outputStorage: {
type: "COS",
cosOutputStorage: {
bucket: output.bucket,
region: "%s",
},
},
outputDir: "output/",
aiContentReviewTask: {
definition: 10,
},
aiRecognitionTask: {
definition: 10,
},
taskNotifyConfig: {
cmqModel: "Queue",
cmqRegion: "gz",
queueName: "test",
topicName: "test",
notifyType: "CMQ",
},
});
import pulumi
import pulumi_tencentcloud as tencentcloud
output = tencentcloud.CosBucket("output",
bucket=f"tf-bucket-mps-edit-media-output-{local['app_id']}",
force_clean=True,
acl="public-read")
object = tencentcloud.get_cos_bucket_object(bucket=f"keep-bucket-{local['app_id']}",
key="/mps-test/test.mov")
operation = tencentcloud.MpsProcessMediaOperation("operation",
input_info={
"type": "COS",
"cos_input_info": {
"bucket": object.bucket,
"region": "%s",
"object": object.key,
},
},
output_storage={
"type": "COS",
"cos_output_storage": {
"bucket": output.bucket,
"region": "%s",
},
},
output_dir="output/",
ai_content_review_task={
"definition": 10,
},
ai_recognition_task={
"definition": 10,
},
task_notify_config={
"cmq_model": "Queue",
"cmq_region": "gz",
"queue_name": "test",
"topic_name": "test",
"notify_type": "CMQ",
})
package main
import (
"fmt"
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
output, err := tencentcloud.NewCosBucket(ctx, "output", &tencentcloud.CosBucketArgs{
Bucket: pulumi.Sprintf("tf-bucket-mps-edit-media-output-%v", local.App_id),
ForceClean: pulumi.Bool(true),
Acl: pulumi.String("public-read"),
})
if err != nil {
return err
}
object, err := tencentcloud.LookupCosBucketObject(ctx, &tencentcloud.LookupCosBucketObjectArgs{
Bucket: fmt.Sprintf("keep-bucket-%v", local.App_id),
Key: "/mps-test/test.mov",
}, nil)
if err != nil {
return err
}
_, err = tencentcloud.NewMpsProcessMediaOperation(ctx, "operation", &tencentcloud.MpsProcessMediaOperationArgs{
InputInfo: &tencentcloud.MpsProcessMediaOperationInputInfoArgs{
Type: pulumi.String("COS"),
CosInputInfo: &tencentcloud.MpsProcessMediaOperationInputInfoCosInputInfoArgs{
Bucket: pulumi.String(object.Bucket),
Region: pulumi.String("%s"),
Object: pulumi.String(object.Key),
},
},
OutputStorage: &tencentcloud.MpsProcessMediaOperationOutputStorageArgs{
Type: pulumi.String("COS"),
CosOutputStorage: &tencentcloud.MpsProcessMediaOperationOutputStorageCosOutputStorageArgs{
Bucket: output.Bucket,
Region: pulumi.String("%s"),
},
},
OutputDir: pulumi.String("output/"),
AiContentReviewTask: &tencentcloud.MpsProcessMediaOperationAiContentReviewTaskArgs{
Definition: pulumi.Float64(10),
},
AiRecognitionTask: &tencentcloud.MpsProcessMediaOperationAiRecognitionTaskArgs{
Definition: pulumi.Float64(10),
},
TaskNotifyConfig: &tencentcloud.MpsProcessMediaOperationTaskNotifyConfigArgs{
CmqModel: pulumi.String("Queue"),
CmqRegion: pulumi.String("gz"),
QueueName: pulumi.String("test"),
TopicName: pulumi.String("test"),
NotifyType: pulumi.String("CMQ"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var output = new Tencentcloud.CosBucket("output", new()
{
Bucket = $"tf-bucket-mps-edit-media-output-{local.App_id}",
ForceClean = true,
Acl = "public-read",
});
var @object = Tencentcloud.GetCosBucketObject.Invoke(new()
{
Bucket = $"keep-bucket-{local.App_id}",
Key = "/mps-test/test.mov",
});
var operation = new Tencentcloud.MpsProcessMediaOperation("operation", new()
{
InputInfo = new Tencentcloud.Inputs.MpsProcessMediaOperationInputInfoArgs
{
Type = "COS",
CosInputInfo = new Tencentcloud.Inputs.MpsProcessMediaOperationInputInfoCosInputInfoArgs
{
Bucket = @object.Apply(@object => @object.Apply(getCosBucketObjectResult => getCosBucketObjectResult.Bucket)),
Region = "%s",
Object = @object.Apply(@object => @object.Apply(getCosBucketObjectResult => getCosBucketObjectResult.Key)),
},
},
OutputStorage = new Tencentcloud.Inputs.MpsProcessMediaOperationOutputStorageArgs
{
Type = "COS",
CosOutputStorage = new Tencentcloud.Inputs.MpsProcessMediaOperationOutputStorageCosOutputStorageArgs
{
Bucket = output.Bucket,
Region = "%s",
},
},
OutputDir = "output/",
AiContentReviewTask = new Tencentcloud.Inputs.MpsProcessMediaOperationAiContentReviewTaskArgs
{
Definition = 10,
},
AiRecognitionTask = new Tencentcloud.Inputs.MpsProcessMediaOperationAiRecognitionTaskArgs
{
Definition = 10,
},
TaskNotifyConfig = new Tencentcloud.Inputs.MpsProcessMediaOperationTaskNotifyConfigArgs
{
CmqModel = "Queue",
CmqRegion = "gz",
QueueName = "test",
TopicName = "test",
NotifyType = "CMQ",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.CosBucket;
import com.pulumi.tencentcloud.CosBucketArgs;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetCosBucketObjectArgs;
import com.pulumi.tencentcloud.MpsProcessMediaOperation;
import com.pulumi.tencentcloud.MpsProcessMediaOperationArgs;
import com.pulumi.tencentcloud.inputs.MpsProcessMediaOperationInputInfoArgs;
import com.pulumi.tencentcloud.inputs.MpsProcessMediaOperationInputInfoCosInputInfoArgs;
import com.pulumi.tencentcloud.inputs.MpsProcessMediaOperationOutputStorageArgs;
import com.pulumi.tencentcloud.inputs.MpsProcessMediaOperationOutputStorageCosOutputStorageArgs;
import com.pulumi.tencentcloud.inputs.MpsProcessMediaOperationAiContentReviewTaskArgs;
import com.pulumi.tencentcloud.inputs.MpsProcessMediaOperationAiRecognitionTaskArgs;
import com.pulumi.tencentcloud.inputs.MpsProcessMediaOperationTaskNotifyConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var output = new CosBucket("output", CosBucketArgs.builder()
.bucket(String.format("tf-bucket-mps-edit-media-output-%s", local.app_id()))
.forceClean(true)
.acl("public-read")
.build());
final var object = TencentcloudFunctions.getCosBucketObject(GetCosBucketObjectArgs.builder()
.bucket(String.format("keep-bucket-%s", local.app_id()))
.key("/mps-test/test.mov")
.build());
var operation = new MpsProcessMediaOperation("operation", MpsProcessMediaOperationArgs.builder()
.inputInfo(MpsProcessMediaOperationInputInfoArgs.builder()
.type("COS")
.cosInputInfo(MpsProcessMediaOperationInputInfoCosInputInfoArgs.builder()
.bucket(object.applyValue(getCosBucketObjectResult -> getCosBucketObjectResult.bucket()))
.region("%s")
.object(object.applyValue(getCosBucketObjectResult -> getCosBucketObjectResult.key()))
.build())
.build())
.outputStorage(MpsProcessMediaOperationOutputStorageArgs.builder()
.type("COS")
.cosOutputStorage(MpsProcessMediaOperationOutputStorageCosOutputStorageArgs.builder()
.bucket(output.bucket())
.region("%s")
.build())
.build())
.outputDir("output/")
.aiContentReviewTask(MpsProcessMediaOperationAiContentReviewTaskArgs.builder()
.definition(10)
.build())
.aiRecognitionTask(MpsProcessMediaOperationAiRecognitionTaskArgs.builder()
.definition(10)
.build())
.taskNotifyConfig(MpsProcessMediaOperationTaskNotifyConfigArgs.builder()
.cmqModel("Queue")
.cmqRegion("gz")
.queueName("test")
.topicName("test")
.notifyType("CMQ")
.build())
.build());
}
}
resources:
output:
type: tencentcloud:CosBucket
properties:
bucket: tf-bucket-mps-edit-media-output-${local.app_id}
forceClean: true
acl: public-read
operation:
type: tencentcloud:MpsProcessMediaOperation
properties:
inputInfo:
type: COS
cosInputInfo:
bucket: ${object.bucket}
region: '%s'
object: ${object.key}
outputStorage:
type: COS
cosOutputStorage:
bucket: ${output.bucket}
region: '%s'
outputDir: output/
aiContentReviewTask:
definition: 10
aiRecognitionTask:
definition: 10
taskNotifyConfig:
cmqModel: Queue
cmqRegion: gz
queueName: test
topicName: test
notifyType: CMQ
variables:
object:
fn::invoke:
function: tencentcloud:getCosBucketObject
arguments:
bucket: keep-bucket-${local.app_id}
key: /mps-test/test.mov
Create MpsProcessMediaOperation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MpsProcessMediaOperation(name: string, args: MpsProcessMediaOperationArgs, opts?: CustomResourceOptions);
@overload
def MpsProcessMediaOperation(resource_name: str,
args: MpsProcessMediaOperationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MpsProcessMediaOperation(resource_name: str,
opts: Optional[ResourceOptions] = None,
input_info: Optional[MpsProcessMediaOperationInputInfoArgs] = None,
mps_process_media_operation_id: Optional[str] = None,
output_storage: Optional[MpsProcessMediaOperationOutputStorageArgs] = None,
ai_recognition_task: Optional[MpsProcessMediaOperationAiRecognitionTaskArgs] = None,
ai_content_review_task: Optional[MpsProcessMediaOperationAiContentReviewTaskArgs] = None,
media_process_task: Optional[MpsProcessMediaOperationMediaProcessTaskArgs] = None,
ai_analysis_task: Optional[MpsProcessMediaOperationAiAnalysisTaskArgs] = None,
output_dir: Optional[str] = None,
ai_quality_control_task: Optional[MpsProcessMediaOperationAiQualityControlTaskArgs] = None,
schedule_id: Optional[float] = None,
session_context: Optional[str] = None,
session_id: Optional[str] = None,
task_notify_config: Optional[MpsProcessMediaOperationTaskNotifyConfigArgs] = None,
task_type: Optional[str] = None,
tasks_priority: Optional[float] = None)
func NewMpsProcessMediaOperation(ctx *Context, name string, args MpsProcessMediaOperationArgs, opts ...ResourceOption) (*MpsProcessMediaOperation, error)
public MpsProcessMediaOperation(string name, MpsProcessMediaOperationArgs args, CustomResourceOptions? opts = null)
public MpsProcessMediaOperation(String name, MpsProcessMediaOperationArgs args)
public MpsProcessMediaOperation(String name, MpsProcessMediaOperationArgs args, CustomResourceOptions options)
type: tencentcloud:MpsProcessMediaOperation
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args MpsProcessMediaOperationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args MpsProcessMediaOperationArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args MpsProcessMediaOperationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MpsProcessMediaOperationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MpsProcessMediaOperationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
MpsProcessMediaOperation Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The MpsProcessMediaOperation resource accepts the following input properties:
- Input
Info MpsProcess Media Operation Input Info - The information of the file to process.
- Ai
Analysis MpsTask Process Media Operation Ai Analysis Task - Video content analysis task parameter.
- Ai
Content MpsReview Task Process Media Operation Ai Content Review Task - Type parameter of a video content audit task.
- Ai
Quality MpsControl Task Process Media Operation Ai Quality Control Task - The parameters of a quality control task.
- Ai
Recognition MpsTask Process Media Operation Ai Recognition Task - Type parameter of a video content recognition task.
- Media
Process MpsTask Process Media Operation Media Process Task - The media processing parameters to use.
- Mps
Process stringMedia Operation Id - ID of the resource.
- Output
Dir string - The directory to save the media processing output file, which must start and end with
/
, such as/movie/201907/
.If you do not specify this parameter, the file will be saved to the directory specified inInputInfo
. - Output
Storage MpsProcess Media Operation Output Storage - The storage location of the media processing output file. If this parameter is left empty, the storage location in
InputInfo
will be inherited. - Schedule
Id double - The scheme ID.Note 1: About
OutputStorage
andOutputDir
If an output storage and directory are specified for a subtask of the scheme, those output settings will be applied.If an output storage and directory are not specified for the subtasks of a scheme, the output parameters passed in theProcessMedia
API will be applied.Note 2: IfTaskNotifyConfig
is specified, the specified settings will be used instead of the default callback settings of the scheme.Note 3: The trigger configured for a scheme is for automatically starting a scheme. It stops working when you manually call this API to start a scheme. - Session
Context 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.
- Session
Id string - The ID used for deduplication. If there was a request with the same ID in the last three 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.
- Task
Notify MpsConfig Process Media Operation Task Notify Config - Event notification information of a task. If this parameter is left empty, no event notifications will be obtained.
- Task
Type string - The task type.
Online
(default): A task that is executed immediately.Offline
: A task that is executed when the system is idle (within three days by default). - Tasks
Priority double - Task flow priority. The higher the value, the higher the priority. Value range: [-10, 10]. If this parameter is left empty, 0 will be used.
- Input
Info MpsProcess Media Operation Input Info Args - The information of the file to process.
- Ai
Analysis MpsTask Process Media Operation Ai Analysis Task Args - Video content analysis task parameter.
- Ai
Content MpsReview Task Process Media Operation Ai Content Review Task Args - Type parameter of a video content audit task.
- Ai
Quality MpsControl Task Process Media Operation Ai Quality Control Task Args - The parameters of a quality control task.
- Ai
Recognition MpsTask Process Media Operation Ai Recognition Task Args - Type parameter of a video content recognition task.
- Media
Process MpsTask Process Media Operation Media Process Task Args - The media processing parameters to use.
- Mps
Process stringMedia Operation Id - ID of the resource.
- Output
Dir string - The directory to save the media processing output file, which must start and end with
/
, such as/movie/201907/
.If you do not specify this parameter, the file will be saved to the directory specified inInputInfo
. - Output
Storage MpsProcess Media Operation Output Storage Args - The storage location of the media processing output file. If this parameter is left empty, the storage location in
InputInfo
will be inherited. - Schedule
Id float64 - The scheme ID.Note 1: About
OutputStorage
andOutputDir
If an output storage and directory are specified for a subtask of the scheme, those output settings will be applied.If an output storage and directory are not specified for the subtasks of a scheme, the output parameters passed in theProcessMedia
API will be applied.Note 2: IfTaskNotifyConfig
is specified, the specified settings will be used instead of the default callback settings of the scheme.Note 3: The trigger configured for a scheme is for automatically starting a scheme. It stops working when you manually call this API to start a scheme. - Session
Context 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.
- Session
Id string - The ID used for deduplication. If there was a request with the same ID in the last three 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.
- Task
Notify MpsConfig Process Media Operation Task Notify Config Args - Event notification information of a task. If this parameter is left empty, no event notifications will be obtained.
- Task
Type string - The task type.
Online
(default): A task that is executed immediately.Offline
: A task that is executed when the system is idle (within three days by default). - Tasks
Priority float64 - Task flow priority. The higher the value, the higher the priority. Value range: [-10, 10]. If this parameter is left empty, 0 will be used.
- input
Info MpsProcess Media Operation Input Info - The information of the file to process.
- ai
Analysis MpsTask Process Media Operation Ai Analysis Task - Video content analysis task parameter.
- ai
Content MpsReview Task Process Media Operation Ai Content Review Task - Type parameter of a video content audit task.
- ai
Quality MpsControl Task Process Media Operation Ai Quality Control Task - The parameters of a quality control task.
- ai
Recognition MpsTask Process Media Operation Ai Recognition Task - Type parameter of a video content recognition task.
- media
Process MpsTask Process Media Operation Media Process Task - The media processing parameters to use.
- mps
Process StringMedia Operation Id - ID of the resource.
- output
Dir String - The directory to save the media processing output file, which must start and end with
/
, such as/movie/201907/
.If you do not specify this parameter, the file will be saved to the directory specified inInputInfo
. - output
Storage MpsProcess Media Operation Output Storage - The storage location of the media processing output file. If this parameter is left empty, the storage location in
InputInfo
will be inherited. - schedule
Id Double - The scheme ID.Note 1: About
OutputStorage
andOutputDir
If an output storage and directory are specified for a subtask of the scheme, those output settings will be applied.If an output storage and directory are not specified for the subtasks of a scheme, the output parameters passed in theProcessMedia
API will be applied.Note 2: IfTaskNotifyConfig
is specified, the specified settings will be used instead of the default callback settings of the scheme.Note 3: The trigger configured for a scheme is for automatically starting a scheme. It stops working when you manually call this API to start a scheme. - session
Context 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.
- session
Id String - The ID used for deduplication. If there was a request with the same ID in the last three 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.
- task
Notify MpsConfig Process Media Operation Task Notify Config - Event notification information of a task. If this parameter is left empty, no event notifications will be obtained.
- task
Type String - The task type.
Online
(default): A task that is executed immediately.Offline
: A task that is executed when the system is idle (within three days by default). - tasks
Priority Double - Task flow priority. The higher the value, the higher the priority. Value range: [-10, 10]. If this parameter is left empty, 0 will be used.
- input
Info MpsProcess Media Operation Input Info - The information of the file to process.
- ai
Analysis MpsTask Process Media Operation Ai Analysis Task - Video content analysis task parameter.
- ai
Content MpsReview Task Process Media Operation Ai Content Review Task - Type parameter of a video content audit task.
- ai
Quality MpsControl Task Process Media Operation Ai Quality Control Task - The parameters of a quality control task.
- ai
Recognition MpsTask Process Media Operation Ai Recognition Task - Type parameter of a video content recognition task.
- media
Process MpsTask Process Media Operation Media Process Task - The media processing parameters to use.
- mps
Process stringMedia Operation Id - ID of the resource.
- output
Dir string - The directory to save the media processing output file, which must start and end with
/
, such as/movie/201907/
.If you do not specify this parameter, the file will be saved to the directory specified inInputInfo
. - output
Storage MpsProcess Media Operation Output Storage - The storage location of the media processing output file. If this parameter is left empty, the storage location in
InputInfo
will be inherited. - schedule
Id number - The scheme ID.Note 1: About
OutputStorage
andOutputDir
If an output storage and directory are specified for a subtask of the scheme, those output settings will be applied.If an output storage and directory are not specified for the subtasks of a scheme, the output parameters passed in theProcessMedia
API will be applied.Note 2: IfTaskNotifyConfig
is specified, the specified settings will be used instead of the default callback settings of the scheme.Note 3: The trigger configured for a scheme is for automatically starting a scheme. It stops working when you manually call this API to start a scheme. - session
Context 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.
- session
Id string - The ID used for deduplication. If there was a request with the same ID in the last three 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.
- task
Notify MpsConfig Process Media Operation Task Notify Config - Event notification information of a task. If this parameter is left empty, no event notifications will be obtained.
- task
Type string - The task type.
Online
(default): A task that is executed immediately.Offline
: A task that is executed when the system is idle (within three days by default). - tasks
Priority number - Task flow priority. The higher the value, the higher the priority. Value range: [-10, 10]. If this parameter is left empty, 0 will be used.
- input_
info MpsProcess Media Operation Input Info Args - The information of the file to process.
- ai_
analysis_ Mpstask Process Media Operation Ai Analysis Task Args - Video content analysis task parameter.
- ai_
content_ Mpsreview_ task Process Media Operation Ai Content Review Task Args - Type parameter of a video content audit task.
- ai_
quality_ Mpscontrol_ task Process Media Operation Ai Quality Control Task Args - The parameters of a quality control task.
- ai_
recognition_ Mpstask Process Media Operation Ai Recognition Task Args - Type parameter of a video content recognition task.
- media_
process_ Mpstask Process Media Operation Media Process Task Args - The media processing parameters to use.
- mps_
process_ strmedia_ operation_ id - ID of the resource.
- output_
dir str - The directory to save the media processing output file, which must start and end with
/
, such as/movie/201907/
.If you do not specify this parameter, the file will be saved to the directory specified inInputInfo
. - output_
storage MpsProcess Media Operation Output Storage Args - The storage location of the media processing output file. If this parameter is left empty, the storage location in
InputInfo
will be inherited. - schedule_
id float - The scheme ID.Note 1: About
OutputStorage
andOutputDir
If an output storage and directory are specified for a subtask of the scheme, those output settings will be applied.If an output storage and directory are not specified for the subtasks of a scheme, the output parameters passed in theProcessMedia
API will be applied.Note 2: IfTaskNotifyConfig
is specified, the specified settings will be used instead of the default callback settings of the scheme.Note 3: The trigger configured for a scheme is for automatically starting a scheme. It stops working when you manually call this API to start a scheme. - session_
context str - 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.
- session_
id str - The ID used for deduplication. If there was a request with the same ID in the last three 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.
- task_
notify_ Mpsconfig Process Media Operation Task Notify Config Args - Event notification information of a task. If this parameter is left empty, no event notifications will be obtained.
- task_
type str - The task type.
Online
(default): A task that is executed immediately.Offline
: A task that is executed when the system is idle (within three days by default). - tasks_
priority float - Task flow priority. The higher the value, the higher the priority. Value range: [-10, 10]. If this parameter is left empty, 0 will be used.
- input
Info Property Map - The information of the file to process.
- ai
Analysis Property MapTask - Video content analysis task parameter.
- ai
Content Property MapReview Task - Type parameter of a video content audit task.
- ai
Quality Property MapControl Task - The parameters of a quality control task.
- ai
Recognition Property MapTask - Type parameter of a video content recognition task.
- media
Process Property MapTask - The media processing parameters to use.
- mps
Process StringMedia Operation Id - ID of the resource.
- output
Dir String - The directory to save the media processing output file, which must start and end with
/
, such as/movie/201907/
.If you do not specify this parameter, the file will be saved to the directory specified inInputInfo
. - output
Storage Property Map - The storage location of the media processing output file. If this parameter is left empty, the storage location in
InputInfo
will be inherited. - schedule
Id Number - The scheme ID.Note 1: About
OutputStorage
andOutputDir
If an output storage and directory are specified for a subtask of the scheme, those output settings will be applied.If an output storage and directory are not specified for the subtasks of a scheme, the output parameters passed in theProcessMedia
API will be applied.Note 2: IfTaskNotifyConfig
is specified, the specified settings will be used instead of the default callback settings of the scheme.Note 3: The trigger configured for a scheme is for automatically starting a scheme. It stops working when you manually call this API to start a scheme. - session
Context 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.
- session
Id String - The ID used for deduplication. If there was a request with the same ID in the last three 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.
- task
Notify Property MapConfig - Event notification information of a task. If this parameter is left empty, no event notifications will be obtained.
- task
Type String - The task type.
Online
(default): A task that is executed immediately.Offline
: A task that is executed when the system is idle (within three days by default). - tasks
Priority Number - Task flow priority. The higher the value, the higher the priority. Value range: [-10, 10]. If this parameter is left empty, 0 will be used.
Outputs
All input properties are implicitly available as output properties. Additionally, the MpsProcessMediaOperation resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing MpsProcessMediaOperation Resource
Get an existing MpsProcessMediaOperation resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: MpsProcessMediaOperationState, opts?: CustomResourceOptions): MpsProcessMediaOperation
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
ai_analysis_task: Optional[MpsProcessMediaOperationAiAnalysisTaskArgs] = None,
ai_content_review_task: Optional[MpsProcessMediaOperationAiContentReviewTaskArgs] = None,
ai_quality_control_task: Optional[MpsProcessMediaOperationAiQualityControlTaskArgs] = None,
ai_recognition_task: Optional[MpsProcessMediaOperationAiRecognitionTaskArgs] = None,
input_info: Optional[MpsProcessMediaOperationInputInfoArgs] = None,
media_process_task: Optional[MpsProcessMediaOperationMediaProcessTaskArgs] = None,
mps_process_media_operation_id: Optional[str] = None,
output_dir: Optional[str] = None,
output_storage: Optional[MpsProcessMediaOperationOutputStorageArgs] = None,
schedule_id: Optional[float] = None,
session_context: Optional[str] = None,
session_id: Optional[str] = None,
task_notify_config: Optional[MpsProcessMediaOperationTaskNotifyConfigArgs] = None,
task_type: Optional[str] = None,
tasks_priority: Optional[float] = None) -> MpsProcessMediaOperation
func GetMpsProcessMediaOperation(ctx *Context, name string, id IDInput, state *MpsProcessMediaOperationState, opts ...ResourceOption) (*MpsProcessMediaOperation, error)
public static MpsProcessMediaOperation Get(string name, Input<string> id, MpsProcessMediaOperationState? state, CustomResourceOptions? opts = null)
public static MpsProcessMediaOperation get(String name, Output<String> id, MpsProcessMediaOperationState state, CustomResourceOptions options)
resources: _: type: tencentcloud:MpsProcessMediaOperation get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Ai
Analysis MpsTask Process Media Operation Ai Analysis Task - Video content analysis task parameter.
- Ai
Content MpsReview Task Process Media Operation Ai Content Review Task - Type parameter of a video content audit task.
- Ai
Quality MpsControl Task Process Media Operation Ai Quality Control Task - The parameters of a quality control task.
- Ai
Recognition MpsTask Process Media Operation Ai Recognition Task - Type parameter of a video content recognition task.
- Input
Info MpsProcess Media Operation Input Info - The information of the file to process.
- Media
Process MpsTask Process Media Operation Media Process Task - The media processing parameters to use.
- Mps
Process stringMedia Operation Id - ID of the resource.
- Output
Dir string - The directory to save the media processing output file, which must start and end with
/
, such as/movie/201907/
.If you do not specify this parameter, the file will be saved to the directory specified inInputInfo
. - Output
Storage MpsProcess Media Operation Output Storage - The storage location of the media processing output file. If this parameter is left empty, the storage location in
InputInfo
will be inherited. - Schedule
Id double - The scheme ID.Note 1: About
OutputStorage
andOutputDir
If an output storage and directory are specified for a subtask of the scheme, those output settings will be applied.If an output storage and directory are not specified for the subtasks of a scheme, the output parameters passed in theProcessMedia
API will be applied.Note 2: IfTaskNotifyConfig
is specified, the specified settings will be used instead of the default callback settings of the scheme.Note 3: The trigger configured for a scheme is for automatically starting a scheme. It stops working when you manually call this API to start a scheme. - Session
Context 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.
- Session
Id string - The ID used for deduplication. If there was a request with the same ID in the last three 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.
- Task
Notify MpsConfig Process Media Operation Task Notify Config - Event notification information of a task. If this parameter is left empty, no event notifications will be obtained.
- Task
Type string - The task type.
Online
(default): A task that is executed immediately.Offline
: A task that is executed when the system is idle (within three days by default). - Tasks
Priority double - Task flow priority. The higher the value, the higher the priority. Value range: [-10, 10]. If this parameter is left empty, 0 will be used.
- Ai
Analysis MpsTask Process Media Operation Ai Analysis Task Args - Video content analysis task parameter.
- Ai
Content MpsReview Task Process Media Operation Ai Content Review Task Args - Type parameter of a video content audit task.
- Ai
Quality MpsControl Task Process Media Operation Ai Quality Control Task Args - The parameters of a quality control task.
- Ai
Recognition MpsTask Process Media Operation Ai Recognition Task Args - Type parameter of a video content recognition task.
- Input
Info MpsProcess Media Operation Input Info Args - The information of the file to process.
- Media
Process MpsTask Process Media Operation Media Process Task Args - The media processing parameters to use.
- Mps
Process stringMedia Operation Id - ID of the resource.
- Output
Dir string - The directory to save the media processing output file, which must start and end with
/
, such as/movie/201907/
.If you do not specify this parameter, the file will be saved to the directory specified inInputInfo
. - Output
Storage MpsProcess Media Operation Output Storage Args - The storage location of the media processing output file. If this parameter is left empty, the storage location in
InputInfo
will be inherited. - Schedule
Id float64 - The scheme ID.Note 1: About
OutputStorage
andOutputDir
If an output storage and directory are specified for a subtask of the scheme, those output settings will be applied.If an output storage and directory are not specified for the subtasks of a scheme, the output parameters passed in theProcessMedia
API will be applied.Note 2: IfTaskNotifyConfig
is specified, the specified settings will be used instead of the default callback settings of the scheme.Note 3: The trigger configured for a scheme is for automatically starting a scheme. It stops working when you manually call this API to start a scheme. - Session
Context 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.
- Session
Id string - The ID used for deduplication. If there was a request with the same ID in the last three 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.
- Task
Notify MpsConfig Process Media Operation Task Notify Config Args - Event notification information of a task. If this parameter is left empty, no event notifications will be obtained.
- Task
Type string - The task type.
Online
(default): A task that is executed immediately.Offline
: A task that is executed when the system is idle (within three days by default). - Tasks
Priority float64 - Task flow priority. The higher the value, the higher the priority. Value range: [-10, 10]. If this parameter is left empty, 0 will be used.
- ai
Analysis MpsTask Process Media Operation Ai Analysis Task - Video content analysis task parameter.
- ai
Content MpsReview Task Process Media Operation Ai Content Review Task - Type parameter of a video content audit task.
- ai
Quality MpsControl Task Process Media Operation Ai Quality Control Task - The parameters of a quality control task.
- ai
Recognition MpsTask Process Media Operation Ai Recognition Task - Type parameter of a video content recognition task.
- input
Info MpsProcess Media Operation Input Info - The information of the file to process.
- media
Process MpsTask Process Media Operation Media Process Task - The media processing parameters to use.
- mps
Process StringMedia Operation Id - ID of the resource.
- output
Dir String - The directory to save the media processing output file, which must start and end with
/
, such as/movie/201907/
.If you do not specify this parameter, the file will be saved to the directory specified inInputInfo
. - output
Storage MpsProcess Media Operation Output Storage - The storage location of the media processing output file. If this parameter is left empty, the storage location in
InputInfo
will be inherited. - schedule
Id Double - The scheme ID.Note 1: About
OutputStorage
andOutputDir
If an output storage and directory are specified for a subtask of the scheme, those output settings will be applied.If an output storage and directory are not specified for the subtasks of a scheme, the output parameters passed in theProcessMedia
API will be applied.Note 2: IfTaskNotifyConfig
is specified, the specified settings will be used instead of the default callback settings of the scheme.Note 3: The trigger configured for a scheme is for automatically starting a scheme. It stops working when you manually call this API to start a scheme. - session
Context 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.
- session
Id String - The ID used for deduplication. If there was a request with the same ID in the last three 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.
- task
Notify MpsConfig Process Media Operation Task Notify Config - Event notification information of a task. If this parameter is left empty, no event notifications will be obtained.
- task
Type String - The task type.
Online
(default): A task that is executed immediately.Offline
: A task that is executed when the system is idle (within three days by default). - tasks
Priority Double - Task flow priority. The higher the value, the higher the priority. Value range: [-10, 10]. If this parameter is left empty, 0 will be used.
- ai
Analysis MpsTask Process Media Operation Ai Analysis Task - Video content analysis task parameter.
- ai
Content MpsReview Task Process Media Operation Ai Content Review Task - Type parameter of a video content audit task.
- ai
Quality MpsControl Task Process Media Operation Ai Quality Control Task - The parameters of a quality control task.
- ai
Recognition MpsTask Process Media Operation Ai Recognition Task - Type parameter of a video content recognition task.
- input
Info MpsProcess Media Operation Input Info - The information of the file to process.
- media
Process MpsTask Process Media Operation Media Process Task - The media processing parameters to use.
- mps
Process stringMedia Operation Id - ID of the resource.
- output
Dir string - The directory to save the media processing output file, which must start and end with
/
, such as/movie/201907/
.If you do not specify this parameter, the file will be saved to the directory specified inInputInfo
. - output
Storage MpsProcess Media Operation Output Storage - The storage location of the media processing output file. If this parameter is left empty, the storage location in
InputInfo
will be inherited. - schedule
Id number - The scheme ID.Note 1: About
OutputStorage
andOutputDir
If an output storage and directory are specified for a subtask of the scheme, those output settings will be applied.If an output storage and directory are not specified for the subtasks of a scheme, the output parameters passed in theProcessMedia
API will be applied.Note 2: IfTaskNotifyConfig
is specified, the specified settings will be used instead of the default callback settings of the scheme.Note 3: The trigger configured for a scheme is for automatically starting a scheme. It stops working when you manually call this API to start a scheme. - session
Context 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.
- session
Id string - The ID used for deduplication. If there was a request with the same ID in the last three 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.
- task
Notify MpsConfig Process Media Operation Task Notify Config - Event notification information of a task. If this parameter is left empty, no event notifications will be obtained.
- task
Type string - The task type.
Online
(default): A task that is executed immediately.Offline
: A task that is executed when the system is idle (within three days by default). - tasks
Priority number - Task flow priority. The higher the value, the higher the priority. Value range: [-10, 10]. If this parameter is left empty, 0 will be used.
- ai_
analysis_ Mpstask Process Media Operation Ai Analysis Task Args - Video content analysis task parameter.
- ai_
content_ Mpsreview_ task Process Media Operation Ai Content Review Task Args - Type parameter of a video content audit task.
- ai_
quality_ Mpscontrol_ task Process Media Operation Ai Quality Control Task Args - The parameters of a quality control task.
- ai_
recognition_ Mpstask Process Media Operation Ai Recognition Task Args - Type parameter of a video content recognition task.
- input_
info MpsProcess Media Operation Input Info Args - The information of the file to process.
- media_
process_ Mpstask Process Media Operation Media Process Task Args - The media processing parameters to use.
- mps_
process_ strmedia_ operation_ id - ID of the resource.
- output_
dir str - The directory to save the media processing output file, which must start and end with
/
, such as/movie/201907/
.If you do not specify this parameter, the file will be saved to the directory specified inInputInfo
. - output_
storage MpsProcess Media Operation Output Storage Args - The storage location of the media processing output file. If this parameter is left empty, the storage location in
InputInfo
will be inherited. - schedule_
id float - The scheme ID.Note 1: About
OutputStorage
andOutputDir
If an output storage and directory are specified for a subtask of the scheme, those output settings will be applied.If an output storage and directory are not specified for the subtasks of a scheme, the output parameters passed in theProcessMedia
API will be applied.Note 2: IfTaskNotifyConfig
is specified, the specified settings will be used instead of the default callback settings of the scheme.Note 3: The trigger configured for a scheme is for automatically starting a scheme. It stops working when you manually call this API to start a scheme. - session_
context str - 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.
- session_
id str - The ID used for deduplication. If there was a request with the same ID in the last three 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.
- task_
notify_ Mpsconfig Process Media Operation Task Notify Config Args - Event notification information of a task. If this parameter is left empty, no event notifications will be obtained.
- task_
type str - The task type.
Online
(default): A task that is executed immediately.Offline
: A task that is executed when the system is idle (within three days by default). - tasks_
priority float - Task flow priority. The higher the value, the higher the priority. Value range: [-10, 10]. If this parameter is left empty, 0 will be used.
- ai
Analysis Property MapTask - Video content analysis task parameter.
- ai
Content Property MapReview Task - Type parameter of a video content audit task.
- ai
Quality Property MapControl Task - The parameters of a quality control task.
- ai
Recognition Property MapTask - Type parameter of a video content recognition task.
- input
Info Property Map - The information of the file to process.
- media
Process Property MapTask - The media processing parameters to use.
- mps
Process StringMedia Operation Id - ID of the resource.
- output
Dir String - The directory to save the media processing output file, which must start and end with
/
, such as/movie/201907/
.If you do not specify this parameter, the file will be saved to the directory specified inInputInfo
. - output
Storage Property Map - The storage location of the media processing output file. If this parameter is left empty, the storage location in
InputInfo
will be inherited. - schedule
Id Number - The scheme ID.Note 1: About
OutputStorage
andOutputDir
If an output storage and directory are specified for a subtask of the scheme, those output settings will be applied.If an output storage and directory are not specified for the subtasks of a scheme, the output parameters passed in theProcessMedia
API will be applied.Note 2: IfTaskNotifyConfig
is specified, the specified settings will be used instead of the default callback settings of the scheme.Note 3: The trigger configured for a scheme is for automatically starting a scheme. It stops working when you manually call this API to start a scheme. - session
Context 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.
- session
Id String - The ID used for deduplication. If there was a request with the same ID in the last three 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.
- task
Notify Property MapConfig - Event notification information of a task. If this parameter is left empty, no event notifications will be obtained.
- task
Type String - The task type.
Online
(default): A task that is executed immediately.Offline
: A task that is executed when the system is idle (within three days by default). - tasks
Priority Number - Task flow priority. The higher the value, the higher the priority. Value range: [-10, 10]. If this parameter is left empty, 0 will be used.
Supporting Types
MpsProcessMediaOperationAiAnalysisTask, MpsProcessMediaOperationAiAnalysisTaskArgs
- Definition double
- Video content analysis template ID.
- Extended
Parameter string - An extended parameter, whose value is a stringfied JSON.Note: This parameter is for customers with special requirements. It needs to be customized offline.Note: This field may return null, indicating that no valid values can be obtained.
- Definition float64
- Video content analysis template ID.
- Extended
Parameter string - An extended parameter, whose value is a stringfied JSON.Note: This parameter is for customers with special requirements. It needs to be customized offline.Note: This field may return null, indicating that no valid values can be obtained.
- definition Double
- Video content analysis template ID.
- extended
Parameter String - An extended parameter, whose value is a stringfied JSON.Note: This parameter is for customers with special requirements. It needs to be customized offline.Note: This field may return null, indicating that no valid values can be obtained.
- definition number
- Video content analysis template ID.
- extended
Parameter string - An extended parameter, whose value is a stringfied JSON.Note: This parameter is for customers with special requirements. It needs to be customized offline.Note: This field may return null, indicating that no valid values can be obtained.
- definition float
- Video content analysis template ID.
- extended_
parameter str - An extended parameter, whose value is a stringfied JSON.Note: This parameter is for customers with special requirements. It needs to be customized offline.Note: This field may return null, indicating that no valid values can be obtained.
- definition Number
- Video content analysis template ID.
- extended
Parameter String - An extended parameter, whose value is a stringfied JSON.Note: This parameter is for customers with special requirements. It needs to be customized offline.Note: This field may return null, indicating that no valid values can be obtained.
MpsProcessMediaOperationAiContentReviewTask, MpsProcessMediaOperationAiContentReviewTaskArgs
- Definition double
- Video content audit template ID.
- Definition float64
- Video content audit template ID.
- definition Double
- Video content audit template ID.
- definition number
- Video content audit template ID.
- definition float
- Video content audit template ID.
- definition Number
- Video content audit template ID.
MpsProcessMediaOperationAiQualityControlTask, MpsProcessMediaOperationAiQualityControlTaskArgs
- Channel
Ext stringPara - The channel extension parameter, which is a serialized JSON string.Note: This field may return null, indicating that no valid values can be obtained.
- Definition double
- The ID of the quality control template.Note: This field may return null, indicating that no valid values can be obtained.
- Channel
Ext stringPara - The channel extension parameter, which is a serialized JSON string.Note: This field may return null, indicating that no valid values can be obtained.
- Definition float64
- The ID of the quality control template.Note: This field may return null, indicating that no valid values can be obtained.
- channel
Ext StringPara - The channel extension parameter, which is a serialized JSON string.Note: This field may return null, indicating that no valid values can be obtained.
- definition Double
- The ID of the quality control template.Note: This field may return null, indicating that no valid values can be obtained.
- channel
Ext stringPara - The channel extension parameter, which is a serialized JSON string.Note: This field may return null, indicating that no valid values can be obtained.
- definition number
- The ID of the quality control template.Note: This field may return null, indicating that no valid values can be obtained.
- channel_
ext_ strpara - The channel extension parameter, which is a serialized JSON string.Note: This field may return null, indicating that no valid values can be obtained.
- definition float
- The ID of the quality control template.Note: This field may return null, indicating that no valid values can be obtained.
- channel
Ext StringPara - The channel extension parameter, which is a serialized JSON string.Note: This field may return null, indicating that no valid values can be obtained.
- definition Number
- The ID of the quality control template.Note: This field may return null, indicating that no valid values can be obtained.
MpsProcessMediaOperationAiRecognitionTask, MpsProcessMediaOperationAiRecognitionTaskArgs
- Definition double
- Intelligent video recognition template ID.
- Definition float64
- Intelligent video recognition template ID.
- definition Double
- Intelligent video recognition template ID.
- definition number
- Intelligent video recognition template ID.
- definition float
- Intelligent video recognition template ID.
- definition Number
- Intelligent video recognition template ID.
MpsProcessMediaOperationInputInfo, MpsProcessMediaOperationInputInfoArgs
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - Cos
Input MpsInfo Process Media Operation Input Info Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - S3Input
Info MpsProcess Media Operation Input Info S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - Url
Input MpsInfo Process Media Operation Input Info Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - Cos
Input MpsInfo Process Media Operation Input Info Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - S3Input
Info MpsProcess Media Operation Input Info S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - Url
Input MpsInfo Process Media Operation Input Info Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input MpsInfo Process Media Operation Input Info Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info MpsProcess Media Operation Input Info S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input MpsInfo Process Media Operation Input Info Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input MpsInfo Process Media Operation Input Info Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info MpsProcess Media Operation Input Info S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input MpsInfo Process Media Operation Input Info Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type str
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos_
input_ Mpsinfo Process Media Operation Input Info Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3_
input_ Mpsinfo Process Media Operation Input Info S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url_
input_ Mpsinfo Process Media Operation Input Info Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input Property MapInfo - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info Property Map - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input Property MapInfo - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
MpsProcessMediaOperationInputInfoCosInputInfo, MpsProcessMediaOperationInputInfoCosInputInfoArgs
MpsProcessMediaOperationInputInfoS3InputInfo, MpsProcessMediaOperationInputInfoS3InputInfoArgs
- S3Bucket string
- The AWS S3 bucket.
- S3Object string
- The path of the AWS S3 object.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to access the AWS S3 object.
- S3Secret
Key string - The key required to access the AWS S3 object.
- S3Bucket string
- The AWS S3 bucket.
- S3Object string
- The path of the AWS S3 object.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to access the AWS S3 object.
- S3Secret
Key string - The key required to access the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Object String
- The path of the AWS S3 object.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to access the AWS S3 object.
- s3Secret
Key String - The key required to access the AWS S3 object.
- s3Bucket string
- The AWS S3 bucket.
- s3Object string
- The path of the AWS S3 object.
- s3Region string
- The region of the AWS S3 bucket.
- s3Secret
Id string - The key ID required to access the AWS S3 object.
- s3Secret
Key string - The key required to access the AWS S3 object.
- s3_
bucket str - The AWS S3 bucket.
- s3_
object str - The path of the AWS S3 object.
- s3_
region str - The region of the AWS S3 bucket.
- s3_
secret_ strid - The key ID required to access the AWS S3 object.
- s3_
secret_ strkey - The key required to access the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Object String
- The path of the AWS S3 object.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to access the AWS S3 object.
- s3Secret
Key String - The key required to access the AWS S3 object.
MpsProcessMediaOperationInputInfoUrlInputInfo, MpsProcessMediaOperationInputInfoUrlInputInfoArgs
- Url string
- URL of a video.
- Url string
- URL of a video.
- url String
- URL of a video.
- url string
- URL of a video.
- url str
- URL of a video.
- url String
- URL of a video.
MpsProcessMediaOperationMediaProcessTask, MpsProcessMediaOperationMediaProcessTaskArgs
- Adaptive
Dynamic List<MpsStreaming Task Sets Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set> - List of adaptive bitrate streaming tasks.
- Animated
Graphic List<MpsTask Sets Process Media Operation Media Process Task Animated Graphic Task Set> - List of animated image generating tasks.
- Image
Sprite List<MpsTask Sets Process Media Operation Media Process Task Image Sprite Task Set> - List of image sprite generating tasks.
- Sample
Snapshot List<MpsTask Sets Process Media Operation Media Process Task Sample Snapshot Task Set> - List of sampled screencapturing tasks.
- Snapshot
By List<MpsTime Offset Task Sets Process Media Operation Media Process Task Snapshot By Time Offset Task Set> - List of time point screencapturing tasks.
- Transcode
Task List<MpsSets Process Media Operation Media Process Task Transcode Task Set> - List of transcoding tasks.
- Adaptive
Dynamic []MpsStreaming Task Sets Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set - List of adaptive bitrate streaming tasks.
- Animated
Graphic []MpsTask Sets Process Media Operation Media Process Task Animated Graphic Task Set - List of animated image generating tasks.
- Image
Sprite []MpsTask Sets Process Media Operation Media Process Task Image Sprite Task Set - List of image sprite generating tasks.
- Sample
Snapshot []MpsTask Sets Process Media Operation Media Process Task Sample Snapshot Task Set - List of sampled screencapturing tasks.
- Snapshot
By []MpsTime Offset Task Sets Process Media Operation Media Process Task Snapshot By Time Offset Task Set - List of time point screencapturing tasks.
- Transcode
Task []MpsSets Process Media Operation Media Process Task Transcode Task Set - List of transcoding tasks.
- adaptive
Dynamic List<MpsStreaming Task Sets Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set> - List of adaptive bitrate streaming tasks.
- animated
Graphic List<MpsTask Sets Process Media Operation Media Process Task Animated Graphic Task Set> - List of animated image generating tasks.
- image
Sprite List<MpsTask Sets Process Media Operation Media Process Task Image Sprite Task Set> - List of image sprite generating tasks.
- sample
Snapshot List<MpsTask Sets Process Media Operation Media Process Task Sample Snapshot Task Set> - List of sampled screencapturing tasks.
- snapshot
By List<MpsTime Offset Task Sets Process Media Operation Media Process Task Snapshot By Time Offset Task Set> - List of time point screencapturing tasks.
- transcode
Task List<MpsSets Process Media Operation Media Process Task Transcode Task Set> - List of transcoding tasks.
- adaptive
Dynamic MpsStreaming Task Sets Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set[] - List of adaptive bitrate streaming tasks.
- animated
Graphic MpsTask Sets Process Media Operation Media Process Task Animated Graphic Task Set[] - List of animated image generating tasks.
- image
Sprite MpsTask Sets Process Media Operation Media Process Task Image Sprite Task Set[] - List of image sprite generating tasks.
- sample
Snapshot MpsTask Sets Process Media Operation Media Process Task Sample Snapshot Task Set[] - List of sampled screencapturing tasks.
- snapshot
By MpsTime Offset Task Sets Process Media Operation Media Process Task Snapshot By Time Offset Task Set[] - List of time point screencapturing tasks.
- transcode
Task MpsSets Process Media Operation Media Process Task Transcode Task Set[] - List of transcoding tasks.
- adaptive_
dynamic_ Sequence[Mpsstreaming_ task_ sets Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set] - List of adaptive bitrate streaming tasks.
- animated_
graphic_ Sequence[Mpstask_ sets Process Media Operation Media Process Task Animated Graphic Task Set] - List of animated image generating tasks.
- image_
sprite_ Sequence[Mpstask_ sets Process Media Operation Media Process Task Image Sprite Task Set] - List of image sprite generating tasks.
- sample_
snapshot_ Sequence[Mpstask_ sets Process Media Operation Media Process Task Sample Snapshot Task Set] - List of sampled screencapturing tasks.
- snapshot_
by_ Sequence[Mpstime_ offset_ task_ sets Process Media Operation Media Process Task Snapshot By Time Offset Task Set] - List of time point screencapturing tasks.
- transcode_
task_ Sequence[Mpssets Process Media Operation Media Process Task Transcode Task Set] - List of transcoding tasks.
- adaptive
Dynamic List<Property Map>Streaming Task Sets - List of adaptive bitrate streaming tasks.
- animated
Graphic List<Property Map>Task Sets - List of animated image generating tasks.
- image
Sprite List<Property Map>Task Sets - List of image sprite generating tasks.
- sample
Snapshot List<Property Map>Task Sets - List of sampled screencapturing tasks.
- snapshot
By List<Property Map>Time Offset Task Sets - List of time point screencapturing tasks.
- transcode
Task List<Property Map>Sets - List of transcoding tasks.
MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSet, MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetArgs
- Definition double
- ID of a watermarking template.
- Add
On List<MpsSubtitles Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle> - The subtitle file to add.Note: This field may return null, indicating that no valid values can be obtained.
- Output
Object stringPath - The relative or absolute output path of the manifest file after being transcoded to adaptive bitrate streaming. If this parameter is left empty, a relative path in the following format will be used by default:
{inputName}_adaptiveDynamicStreaming_{definition}.{format}
. - Output
Storage MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Output Storage - Target bucket of an output file after being transcoded to adaptive bitrate streaming. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: this field may return null, indicating that no valid values can be obtained. - Segment
Object stringName - The relative output path of the segment file after being transcoded to adaptive bitrate streaming (in HLS format only). If this parameter is left empty, a relative path in the following format will be used by default:
{inputName}_adaptiveDynamicStreaming_{definition}_{subStreamNumber}_{segmentNumber}.{format}
. - Sub
Stream stringObject Name - The relative output path of the substream file after being transcoded to adaptive bitrate streaming. If this parameter is left empty, a relative path in the following format will be used by default:
{inputName}_adaptiveDynamicStreaming_{definition}_{subStreamNumber}.{format}
. - Watermark
Sets List<MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set> - List of up to 10 image or text watermarks.
- Definition float64
- ID of a watermarking template.
- Add
On []MpsSubtitles Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle - The subtitle file to add.Note: This field may return null, indicating that no valid values can be obtained.
- Output
Object stringPath - The relative or absolute output path of the manifest file after being transcoded to adaptive bitrate streaming. If this parameter is left empty, a relative path in the following format will be used by default:
{inputName}_adaptiveDynamicStreaming_{definition}.{format}
. - Output
Storage MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Output Storage - Target bucket of an output file after being transcoded to adaptive bitrate streaming. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: this field may return null, indicating that no valid values can be obtained. - Segment
Object stringName - The relative output path of the segment file after being transcoded to adaptive bitrate streaming (in HLS format only). If this parameter is left empty, a relative path in the following format will be used by default:
{inputName}_adaptiveDynamicStreaming_{definition}_{subStreamNumber}_{segmentNumber}.{format}
. - Sub
Stream stringObject Name - The relative output path of the substream file after being transcoded to adaptive bitrate streaming. If this parameter is left empty, a relative path in the following format will be used by default:
{inputName}_adaptiveDynamicStreaming_{definition}_{subStreamNumber}.{format}
. - Watermark
Sets []MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set - List of up to 10 image or text watermarks.
- definition Double
- ID of a watermarking template.
- add
On List<MpsSubtitles Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle> - The subtitle file to add.Note: This field may return null, indicating that no valid values can be obtained.
- output
Object StringPath - The relative or absolute output path of the manifest file after being transcoded to adaptive bitrate streaming. If this parameter is left empty, a relative path in the following format will be used by default:
{inputName}_adaptiveDynamicStreaming_{definition}.{format}
. - output
Storage MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Output Storage - Target bucket of an output file after being transcoded to adaptive bitrate streaming. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: this field may return null, indicating that no valid values can be obtained. - segment
Object StringName - The relative output path of the segment file after being transcoded to adaptive bitrate streaming (in HLS format only). If this parameter is left empty, a relative path in the following format will be used by default:
{inputName}_adaptiveDynamicStreaming_{definition}_{subStreamNumber}_{segmentNumber}.{format}
. - sub
Stream StringObject Name - The relative output path of the substream file after being transcoded to adaptive bitrate streaming. If this parameter is left empty, a relative path in the following format will be used by default:
{inputName}_adaptiveDynamicStreaming_{definition}_{subStreamNumber}.{format}
. - watermark
Sets List<MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set> - List of up to 10 image or text watermarks.
- definition number
- ID of a watermarking template.
- add
On MpsSubtitles Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle[] - The subtitle file to add.Note: This field may return null, indicating that no valid values can be obtained.
- output
Object stringPath - The relative or absolute output path of the manifest file after being transcoded to adaptive bitrate streaming. If this parameter is left empty, a relative path in the following format will be used by default:
{inputName}_adaptiveDynamicStreaming_{definition}.{format}
. - output
Storage MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Output Storage - Target bucket of an output file after being transcoded to adaptive bitrate streaming. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: this field may return null, indicating that no valid values can be obtained. - segment
Object stringName - The relative output path of the segment file after being transcoded to adaptive bitrate streaming (in HLS format only). If this parameter is left empty, a relative path in the following format will be used by default:
{inputName}_adaptiveDynamicStreaming_{definition}_{subStreamNumber}_{segmentNumber}.{format}
. - sub
Stream stringObject Name - The relative output path of the substream file after being transcoded to adaptive bitrate streaming. If this parameter is left empty, a relative path in the following format will be used by default:
{inputName}_adaptiveDynamicStreaming_{definition}_{subStreamNumber}.{format}
. - watermark
Sets MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set[] - List of up to 10 image or text watermarks.
- definition float
- ID of a watermarking template.
- add_
on_ Sequence[Mpssubtitles Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle] - The subtitle file to add.Note: This field may return null, indicating that no valid values can be obtained.
- output_
object_ strpath - The relative or absolute output path of the manifest file after being transcoded to adaptive bitrate streaming. If this parameter is left empty, a relative path in the following format will be used by default:
{inputName}_adaptiveDynamicStreaming_{definition}.{format}
. - output_
storage MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Output Storage - Target bucket of an output file after being transcoded to adaptive bitrate streaming. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: this field may return null, indicating that no valid values can be obtained. - segment_
object_ strname - The relative output path of the segment file after being transcoded to adaptive bitrate streaming (in HLS format only). If this parameter is left empty, a relative path in the following format will be used by default:
{inputName}_adaptiveDynamicStreaming_{definition}_{subStreamNumber}_{segmentNumber}.{format}
. - sub_
stream_ strobject_ name - The relative output path of the substream file after being transcoded to adaptive bitrate streaming. If this parameter is left empty, a relative path in the following format will be used by default:
{inputName}_adaptiveDynamicStreaming_{definition}_{subStreamNumber}.{format}
. - watermark_
sets Sequence[MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set] - List of up to 10 image or text watermarks.
- definition Number
- ID of a watermarking template.
- add
On List<Property Map>Subtitles - The subtitle file to add.Note: This field may return null, indicating that no valid values can be obtained.
- output
Object StringPath - The relative or absolute output path of the manifest file after being transcoded to adaptive bitrate streaming. If this parameter is left empty, a relative path in the following format will be used by default:
{inputName}_adaptiveDynamicStreaming_{definition}.{format}
. - output
Storage Property Map - Target bucket of an output file after being transcoded to adaptive bitrate streaming. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: this field may return null, indicating that no valid values can be obtained. - segment
Object StringName - The relative output path of the segment file after being transcoded to adaptive bitrate streaming (in HLS format only). If this parameter is left empty, a relative path in the following format will be used by default:
{inputName}_adaptiveDynamicStreaming_{definition}_{subStreamNumber}_{segmentNumber}.{format}
. - sub
Stream StringObject Name - The relative output path of the substream file after being transcoded to adaptive bitrate streaming. If this parameter is left empty, a relative path in the following format will be used by default:
{inputName}_adaptiveDynamicStreaming_{definition}_{subStreamNumber}.{format}
. - watermark
Sets List<Property Map> - List of up to 10 image or text watermarks.
MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetAddOnSubtitle, MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetAddOnSubtitleArgs
- Subtitle
Mps
Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle Subtitle - The subtitle file.Note: This field may return null, indicating that no valid values can be obtained.
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks.
- Subtitle
Mps
Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle Subtitle - The subtitle file.Note: This field may return null, indicating that no valid values can be obtained.
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks.
- subtitle
Mps
Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle Subtitle - The subtitle file.Note: This field may return null, indicating that no valid values can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks.
- subtitle
Mps
Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle Subtitle - The subtitle file.Note: This field may return null, indicating that no valid values can be obtained.
- type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks.
- subtitle
Mps
Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle Subtitle - The subtitle file.Note: This field may return null, indicating that no valid values can be obtained.
- type str
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks.
- subtitle Property Map
- The subtitle file.Note: This field may return null, indicating that no valid values can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks.
MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetAddOnSubtitleSubtitle, MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetAddOnSubtitleSubtitleArgs
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - Cos
Input MpsInfo Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle Subtitle Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - S3Input
Info MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle Subtitle S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - Url
Input MpsInfo Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle Subtitle Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - Cos
Input MpsInfo Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle Subtitle Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - S3Input
Info MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle Subtitle S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - Url
Input MpsInfo Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle Subtitle Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input MpsInfo Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle Subtitle Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle Subtitle S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input MpsInfo Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle Subtitle Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input MpsInfo Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle Subtitle Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle Subtitle S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input MpsInfo Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle Subtitle Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type str
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos_
input_ Mpsinfo Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle Subtitle Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3_
input_ Mpsinfo Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle Subtitle S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url_
input_ Mpsinfo Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Add On Subtitle Subtitle Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input Property MapInfo - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info Property Map - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input Property MapInfo - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetAddOnSubtitleSubtitleCosInputInfo, MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetAddOnSubtitleSubtitleCosInputInfoArgs
MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetAddOnSubtitleSubtitleS3InputInfo, MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetAddOnSubtitleSubtitleS3InputInfoArgs
- S3Bucket string
- The AWS S3 bucket.
- S3Object string
- The path of the AWS S3 object.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to access the AWS S3 object.
- S3Secret
Key string - The key required to access the AWS S3 object.
- S3Bucket string
- The AWS S3 bucket.
- S3Object string
- The path of the AWS S3 object.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to access the AWS S3 object.
- S3Secret
Key string - The key required to access the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Object String
- The path of the AWS S3 object.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to access the AWS S3 object.
- s3Secret
Key String - The key required to access the AWS S3 object.
- s3Bucket string
- The AWS S3 bucket.
- s3Object string
- The path of the AWS S3 object.
- s3Region string
- The region of the AWS S3 bucket.
- s3Secret
Id string - The key ID required to access the AWS S3 object.
- s3Secret
Key string - The key required to access the AWS S3 object.
- s3_
bucket str - The AWS S3 bucket.
- s3_
object str - The path of the AWS S3 object.
- s3_
region str - The region of the AWS S3 bucket.
- s3_
secret_ strid - The key ID required to access the AWS S3 object.
- s3_
secret_ strkey - The key required to access the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Object String
- The path of the AWS S3 object.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to access the AWS S3 object.
- s3Secret
Key String - The key required to access the AWS S3 object.
MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetAddOnSubtitleSubtitleUrlInputInfo, MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetAddOnSubtitleSubtitleUrlInputInfoArgs
- Url string
- URL of a video.
- Url string
- URL of a video.
- url String
- URL of a video.
- url string
- URL of a video.
- url str
- URL of a video.
- url String
- URL of a video.
MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetOutputStorage, MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetOutputStorageArgs
- Type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - Cos
Output MpsStorage Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - S3Output
Storage MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- Type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - Cos
Output MpsStorage Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - S3Output
Storage MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos
Output MpsStorage Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3Output
Storage MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos
Output MpsStorage Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3Output
Storage MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type str
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos_
output_ Mpsstorage Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3_
output_ Mpsstorage Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos
Output Property MapStorage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3Output
Storage Property Map - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetOutputStorageCosOutputStorage, MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetOutputStorageCosOutputStorageArgs
- Bucket string
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - Region string
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- Bucket string
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - Region string
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket String
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region String
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket string
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region string
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket str
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region str
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket String
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region String
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetOutputStorageS3OutputStorage, MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetOutputStorageS3OutputStorageArgs
- S3Bucket string
- The AWS S3 bucket.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to upload files to the AWS S3 object.
- S3Secret
Key string - The key required to upload files to the AWS S3 object.
- S3Bucket string
- The AWS S3 bucket.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to upload files to the AWS S3 object.
- S3Secret
Key string - The key required to upload files to the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to upload files to the AWS S3 object.
- s3Secret
Key String - The key required to upload files to the AWS S3 object.
- s3Bucket string
- The AWS S3 bucket.
- s3Region string
- The region of the AWS S3 bucket.
- s3Secret
Id string - The key ID required to upload files to the AWS S3 object.
- s3Secret
Key string - The key required to upload files to the AWS S3 object.
- s3_
bucket str - The AWS S3 bucket.
- s3_
region str - The region of the AWS S3 bucket.
- s3_
secret_ strid - The key ID required to upload files to the AWS S3 object.
- s3_
secret_ strkey - The key required to upload files to the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to upload files to the AWS S3 object.
- s3Secret
Key String - The key required to upload files to the AWS S3 object.
MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetWatermarkSet, MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetWatermarkSetArgs
- Definition double
- ID of a watermarking template.
- End
Time doubleOffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- Raw
Parameter MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - Start
Time doubleOffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- Svg
Content string - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - Text
Content string - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
- Definition float64
- ID of a watermarking template.
- End
Time float64Offset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- Raw
Parameter MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - Start
Time float64Offset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- Svg
Content string - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - Text
Content string - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
- definition Double
- ID of a watermarking template.
- end
Time DoubleOffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- raw
Parameter MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - start
Time DoubleOffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- svg
Content String - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - text
Content String - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
- definition number
- ID of a watermarking template.
- end
Time numberOffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- raw
Parameter MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - start
Time numberOffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- svg
Content string - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - text
Content string - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
- definition float
- ID of a watermarking template.
- end_
time_ floatoffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- raw_
parameter MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - start_
time_ floatoffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- svg_
content str - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - text_
content str - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
- definition Number
- ID of a watermarking template.
- end
Time NumberOffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- raw
Parameter Property Map - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - start
Time NumberOffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- svg
Content String - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - text
Content String - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetWatermarkSetRawParameter, MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetWatermarkSetRawParameterArgs
- Type string
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- Coordinate
Origin string - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- Image
Template MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - XPos string
- The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - YPos string
- The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- Type string
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- Coordinate
Origin string - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- Image
Template MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - XPos string
- The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - YPos string
- The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- type String
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- coordinate
Origin String - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- image
Template MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - x
Pos String - The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - y
Pos String - The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- type string
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- coordinate
Origin string - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- image
Template MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - x
Pos string - The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - y
Pos string - The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- type str
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- coordinate_
origin str - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- image_
template MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - x_
pos str - The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - y_
pos str - The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- type String
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- coordinate
Origin String - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- image
Template Property Map - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - x
Pos String - The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - y
Pos String - The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetWatermarkSetRawParameterImageTemplate, MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetWatermarkSetRawParameterImageTemplateArgs
- Image
Content MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template Image Content - Input content of watermark image. JPEG and PNG images are supported.
- Height string
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - Repeat
Type string - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - Width string
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
- Image
Content MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template Image Content - Input content of watermark image. JPEG and PNG images are supported.
- Height string
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - Repeat
Type string - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - Width string
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
- image
Content MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template Image Content - Input content of watermark image. JPEG and PNG images are supported.
- height String
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - repeat
Type String - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - width String
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
- image
Content MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template Image Content - Input content of watermark image. JPEG and PNG images are supported.
- height string
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - repeat
Type string - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - width string
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
- image_
content MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template Image Content - Input content of watermark image. JPEG and PNG images are supported.
- height str
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - repeat_
type str - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - width str
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
- image
Content Property Map - Input content of watermark image. JPEG and PNG images are supported.
- height String
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - repeat
Type String - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - width String
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetWatermarkSetRawParameterImageTemplateImageContent, MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetWatermarkSetRawParameterImageTemplateImageContentArgs
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - Cos
Input MpsInfo Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template Image Content Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - S3Input
Info MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template Image Content S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - Url
Input MpsInfo Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template Image Content Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - Cos
Input MpsInfo Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template Image Content Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - S3Input
Info MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template Image Content S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - Url
Input MpsInfo Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template Image Content Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input MpsInfo Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template Image Content Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template Image Content S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input MpsInfo Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template Image Content Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input MpsInfo Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template Image Content Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info MpsProcess Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template Image Content S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input MpsInfo Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template Image Content Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type str
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos_
input_ Mpsinfo Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template Image Content Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3_
input_ Mpsinfo Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template Image Content S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url_
input_ Mpsinfo Process Media Operation Media Process Task Adaptive Dynamic Streaming Task Set Watermark Set Raw Parameter Image Template Image Content Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input Property MapInfo - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info Property Map - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input Property MapInfo - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetWatermarkSetRawParameterImageTemplateImageContentCosInputInfo, MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetWatermarkSetRawParameterImageTemplateImageContentCosInputInfoArgs
MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetWatermarkSetRawParameterImageTemplateImageContentS3InputInfo, MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetWatermarkSetRawParameterImageTemplateImageContentS3InputInfoArgs
- S3Bucket string
- The AWS S3 bucket.
- S3Object string
- The path of the AWS S3 object.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to access the AWS S3 object.
- S3Secret
Key string - The key required to access the AWS S3 object.
- S3Bucket string
- The AWS S3 bucket.
- S3Object string
- The path of the AWS S3 object.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to access the AWS S3 object.
- S3Secret
Key string - The key required to access the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Object String
- The path of the AWS S3 object.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to access the AWS S3 object.
- s3Secret
Key String - The key required to access the AWS S3 object.
- s3Bucket string
- The AWS S3 bucket.
- s3Object string
- The path of the AWS S3 object.
- s3Region string
- The region of the AWS S3 bucket.
- s3Secret
Id string - The key ID required to access the AWS S3 object.
- s3Secret
Key string - The key required to access the AWS S3 object.
- s3_
bucket str - The AWS S3 bucket.
- s3_
object str - The path of the AWS S3 object.
- s3_
region str - The region of the AWS S3 bucket.
- s3_
secret_ strid - The key ID required to access the AWS S3 object.
- s3_
secret_ strkey - The key required to access the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Object String
- The path of the AWS S3 object.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to access the AWS S3 object.
- s3Secret
Key String - The key required to access the AWS S3 object.
MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetWatermarkSetRawParameterImageTemplateImageContentUrlInputInfo, MpsProcessMediaOperationMediaProcessTaskAdaptiveDynamicStreamingTaskSetWatermarkSetRawParameterImageTemplateImageContentUrlInputInfoArgs
- Url string
- URL of a video.
- Url string
- URL of a video.
- url String
- URL of a video.
- url string
- URL of a video.
- url str
- URL of a video.
- url String
- URL of a video.
MpsProcessMediaOperationMediaProcessTaskAnimatedGraphicTaskSet, MpsProcessMediaOperationMediaProcessTaskAnimatedGraphicTaskSetArgs
- Definition double
- Animated image generating template ID.
- End
Time doubleOffset - End time of an animated image in a video in seconds.
- Start
Time doubleOffset - Start time of an animated image in a video in seconds.
- Output
Object stringPath - Output path to a generated animated image file, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_animatedGraphic_{definition}.{format}
. - Output
Storage MpsProcess Media Operation Media Process Task Animated Graphic Task Set Output Storage - Target bucket of a generated animated image file. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained.
- Definition float64
- Animated image generating template ID.
- End
Time float64Offset - End time of an animated image in a video in seconds.
- Start
Time float64Offset - Start time of an animated image in a video in seconds.
- Output
Object stringPath - Output path to a generated animated image file, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_animatedGraphic_{definition}.{format}
. - Output
Storage MpsProcess Media Operation Media Process Task Animated Graphic Task Set Output Storage - Target bucket of a generated animated image file. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained.
- definition Double
- Animated image generating template ID.
- end
Time DoubleOffset - End time of an animated image in a video in seconds.
- start
Time DoubleOffset - Start time of an animated image in a video in seconds.
- output
Object StringPath - Output path to a generated animated image file, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_animatedGraphic_{definition}.{format}
. - output
Storage MpsProcess Media Operation Media Process Task Animated Graphic Task Set Output Storage - Target bucket of a generated animated image file. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained.
- definition number
- Animated image generating template ID.
- end
Time numberOffset - End time of an animated image in a video in seconds.
- start
Time numberOffset - Start time of an animated image in a video in seconds.
- output
Object stringPath - Output path to a generated animated image file, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_animatedGraphic_{definition}.{format}
. - output
Storage MpsProcess Media Operation Media Process Task Animated Graphic Task Set Output Storage - Target bucket of a generated animated image file. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained.
- definition float
- Animated image generating template ID.
- end_
time_ floatoffset - End time of an animated image in a video in seconds.
- start_
time_ floatoffset - Start time of an animated image in a video in seconds.
- output_
object_ strpath - Output path to a generated animated image file, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_animatedGraphic_{definition}.{format}
. - output_
storage MpsProcess Media Operation Media Process Task Animated Graphic Task Set Output Storage - Target bucket of a generated animated image file. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained.
- definition Number
- Animated image generating template ID.
- end
Time NumberOffset - End time of an animated image in a video in seconds.
- start
Time NumberOffset - Start time of an animated image in a video in seconds.
- output
Object StringPath - Output path to a generated animated image file, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_animatedGraphic_{definition}.{format}
. - output
Storage Property Map - Target bucket of a generated animated image file. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained.
MpsProcessMediaOperationMediaProcessTaskAnimatedGraphicTaskSetOutputStorage, MpsProcessMediaOperationMediaProcessTaskAnimatedGraphicTaskSetOutputStorageArgs
- Type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - Cos
Output MpsStorage Process Media Operation Media Process Task Animated Graphic Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - S3Output
Storage MpsProcess Media Operation Media Process Task Animated Graphic Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- Type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - Cos
Output MpsStorage Process Media Operation Media Process Task Animated Graphic Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - S3Output
Storage MpsProcess Media Operation Media Process Task Animated Graphic Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos
Output MpsStorage Process Media Operation Media Process Task Animated Graphic Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3Output
Storage MpsProcess Media Operation Media Process Task Animated Graphic Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos
Output MpsStorage Process Media Operation Media Process Task Animated Graphic Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3Output
Storage MpsProcess Media Operation Media Process Task Animated Graphic Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type str
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos_
output_ Mpsstorage Process Media Operation Media Process Task Animated Graphic Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3_
output_ Mpsstorage Process Media Operation Media Process Task Animated Graphic Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos
Output Property MapStorage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3Output
Storage Property Map - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
MpsProcessMediaOperationMediaProcessTaskAnimatedGraphicTaskSetOutputStorageCosOutputStorage, MpsProcessMediaOperationMediaProcessTaskAnimatedGraphicTaskSetOutputStorageCosOutputStorageArgs
- Bucket string
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - Region string
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- Bucket string
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - Region string
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket String
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region String
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket string
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region string
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket str
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region str
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket String
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region String
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
MpsProcessMediaOperationMediaProcessTaskAnimatedGraphicTaskSetOutputStorageS3OutputStorage, MpsProcessMediaOperationMediaProcessTaskAnimatedGraphicTaskSetOutputStorageS3OutputStorageArgs
- S3Bucket string
- The AWS S3 bucket.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to upload files to the AWS S3 object.
- S3Secret
Key string - The key required to upload files to the AWS S3 object.
- S3Bucket string
- The AWS S3 bucket.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to upload files to the AWS S3 object.
- S3Secret
Key string - The key required to upload files to the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to upload files to the AWS S3 object.
- s3Secret
Key String - The key required to upload files to the AWS S3 object.
- s3Bucket string
- The AWS S3 bucket.
- s3Region string
- The region of the AWS S3 bucket.
- s3Secret
Id string - The key ID required to upload files to the AWS S3 object.
- s3Secret
Key string - The key required to upload files to the AWS S3 object.
- s3_
bucket str - The AWS S3 bucket.
- s3_
region str - The region of the AWS S3 bucket.
- s3_
secret_ strid - The key ID required to upload files to the AWS S3 object.
- s3_
secret_ strkey - The key required to upload files to the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to upload files to the AWS S3 object.
- s3Secret
Key String - The key required to upload files to the AWS S3 object.
MpsProcessMediaOperationMediaProcessTaskImageSpriteTaskSet, MpsProcessMediaOperationMediaProcessTaskImageSpriteTaskSetArgs
- Definition double
- ID of an image sprite generating template.
- Object
Number MpsFormat Process Media Operation Media Process Task Image Sprite Task Set Object Number Format - Rule of the
{number}
variable in the image sprite output path.Note: This field may return null, indicating that no valid values can be obtained. - Output
Object stringPath - Output path to a generated image sprite file, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_imageSprite_{definition}_{number}.{format}
. - Output
Storage MpsProcess Media Operation Media Process Task Image Sprite Task Set Output Storage - Target bucket of a generated image sprite. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - Web
Vtt stringObject Name - Output path to the WebVTT file after an image sprite is generated, which can only be a relative path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_imageSprite_{definition}.{format}
.
- Definition float64
- ID of an image sprite generating template.
- Object
Number MpsFormat Process Media Operation Media Process Task Image Sprite Task Set Object Number Format - Rule of the
{number}
variable in the image sprite output path.Note: This field may return null, indicating that no valid values can be obtained. - Output
Object stringPath - Output path to a generated image sprite file, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_imageSprite_{definition}_{number}.{format}
. - Output
Storage MpsProcess Media Operation Media Process Task Image Sprite Task Set Output Storage - Target bucket of a generated image sprite. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - Web
Vtt stringObject Name - Output path to the WebVTT file after an image sprite is generated, which can only be a relative path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_imageSprite_{definition}.{format}
.
- definition Double
- ID of an image sprite generating template.
- object
Number MpsFormat Process Media Operation Media Process Task Image Sprite Task Set Object Number Format - Rule of the
{number}
variable in the image sprite output path.Note: This field may return null, indicating that no valid values can be obtained. - output
Object StringPath - Output path to a generated image sprite file, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_imageSprite_{definition}_{number}.{format}
. - output
Storage MpsProcess Media Operation Media Process Task Image Sprite Task Set Output Storage - Target bucket of a generated image sprite. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - web
Vtt StringObject Name - Output path to the WebVTT file after an image sprite is generated, which can only be a relative path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_imageSprite_{definition}.{format}
.
- definition number
- ID of an image sprite generating template.
- object
Number MpsFormat Process Media Operation Media Process Task Image Sprite Task Set Object Number Format - Rule of the
{number}
variable in the image sprite output path.Note: This field may return null, indicating that no valid values can be obtained. - output
Object stringPath - Output path to a generated image sprite file, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_imageSprite_{definition}_{number}.{format}
. - output
Storage MpsProcess Media Operation Media Process Task Image Sprite Task Set Output Storage - Target bucket of a generated image sprite. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - web
Vtt stringObject Name - Output path to the WebVTT file after an image sprite is generated, which can only be a relative path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_imageSprite_{definition}.{format}
.
- definition float
- ID of an image sprite generating template.
- object_
number_ Mpsformat Process Media Operation Media Process Task Image Sprite Task Set Object Number Format - Rule of the
{number}
variable in the image sprite output path.Note: This field may return null, indicating that no valid values can be obtained. - output_
object_ strpath - Output path to a generated image sprite file, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_imageSprite_{definition}_{number}.{format}
. - output_
storage MpsProcess Media Operation Media Process Task Image Sprite Task Set Output Storage - Target bucket of a generated image sprite. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - web_
vtt_ strobject_ name - Output path to the WebVTT file after an image sprite is generated, which can only be a relative path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_imageSprite_{definition}.{format}
.
- definition Number
- ID of an image sprite generating template.
- object
Number Property MapFormat - Rule of the
{number}
variable in the image sprite output path.Note: This field may return null, indicating that no valid values can be obtained. - output
Object StringPath - Output path to a generated image sprite file, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_imageSprite_{definition}_{number}.{format}
. - output
Storage Property Map - Target bucket of a generated image sprite. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - web
Vtt StringObject Name - Output path to the WebVTT file after an image sprite is generated, which can only be a relative path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_imageSprite_{definition}.{format}
.
MpsProcessMediaOperationMediaProcessTaskImageSpriteTaskSetObjectNumberFormat, MpsProcessMediaOperationMediaProcessTaskImageSpriteTaskSetObjectNumberFormatArgs
- Increment double
- Increment of the
{number}
variable. Default value: 1. - Initial
Value double - Start value of the
{number}
variable. Default value: 0. - Min
Length double - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - Place
Holder string - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
- Increment float64
- Increment of the
{number}
variable. Default value: 1. - Initial
Value float64 - Start value of the
{number}
variable. Default value: 0. - Min
Length float64 - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - Place
Holder string - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
- increment Double
- Increment of the
{number}
variable. Default value: 1. - initial
Value Double - Start value of the
{number}
variable. Default value: 0. - min
Length Double - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - place
Holder String - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
- increment number
- Increment of the
{number}
variable. Default value: 1. - initial
Value number - Start value of the
{number}
variable. Default value: 0. - min
Length number - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - place
Holder string - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
- increment float
- Increment of the
{number}
variable. Default value: 1. - initial_
value float - Start value of the
{number}
variable. Default value: 0. - min_
length float - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - place_
holder str - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
- increment Number
- Increment of the
{number}
variable. Default value: 1. - initial
Value Number - Start value of the
{number}
variable. Default value: 0. - min
Length Number - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - place
Holder String - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
MpsProcessMediaOperationMediaProcessTaskImageSpriteTaskSetOutputStorage, MpsProcessMediaOperationMediaProcessTaskImageSpriteTaskSetOutputStorageArgs
- Type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - Cos
Output MpsStorage Process Media Operation Media Process Task Image Sprite Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - S3Output
Storage MpsProcess Media Operation Media Process Task Image Sprite Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- Type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - Cos
Output MpsStorage Process Media Operation Media Process Task Image Sprite Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - S3Output
Storage MpsProcess Media Operation Media Process Task Image Sprite Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos
Output MpsStorage Process Media Operation Media Process Task Image Sprite Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3Output
Storage MpsProcess Media Operation Media Process Task Image Sprite Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos
Output MpsStorage Process Media Operation Media Process Task Image Sprite Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3Output
Storage MpsProcess Media Operation Media Process Task Image Sprite Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type str
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos_
output_ Mpsstorage Process Media Operation Media Process Task Image Sprite Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3_
output_ Mpsstorage Process Media Operation Media Process Task Image Sprite Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos
Output Property MapStorage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3Output
Storage Property Map - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
MpsProcessMediaOperationMediaProcessTaskImageSpriteTaskSetOutputStorageCosOutputStorage, MpsProcessMediaOperationMediaProcessTaskImageSpriteTaskSetOutputStorageCosOutputStorageArgs
- Bucket string
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - Region string
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- Bucket string
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - Region string
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket String
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region String
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket string
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region string
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket str
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region str
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket String
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region String
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
MpsProcessMediaOperationMediaProcessTaskImageSpriteTaskSetOutputStorageS3OutputStorage, MpsProcessMediaOperationMediaProcessTaskImageSpriteTaskSetOutputStorageS3OutputStorageArgs
- S3Bucket string
- The AWS S3 bucket.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to upload files to the AWS S3 object.
- S3Secret
Key string - The key required to upload files to the AWS S3 object.
- S3Bucket string
- The AWS S3 bucket.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to upload files to the AWS S3 object.
- S3Secret
Key string - The key required to upload files to the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to upload files to the AWS S3 object.
- s3Secret
Key String - The key required to upload files to the AWS S3 object.
- s3Bucket string
- The AWS S3 bucket.
- s3Region string
- The region of the AWS S3 bucket.
- s3Secret
Id string - The key ID required to upload files to the AWS S3 object.
- s3Secret
Key string - The key required to upload files to the AWS S3 object.
- s3_
bucket str - The AWS S3 bucket.
- s3_
region str - The region of the AWS S3 bucket.
- s3_
secret_ strid - The key ID required to upload files to the AWS S3 object.
- s3_
secret_ strkey - The key required to upload files to the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to upload files to the AWS S3 object.
- s3Secret
Key String - The key required to upload files to the AWS S3 object.
MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSet, MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSetArgs
- Definition double
- ID of a watermarking template.
- Object
Number MpsFormat Process Media Operation Media Process Task Sample Snapshot Task Set Object Number Format - Rule of the
{number}
variable in the sampled screenshot output path.Note: This field may return null, indicating that no valid values can be obtained. - Output
Object stringPath - Output path to a generated sampled screenshot, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_sampleSnapshot_{definition}_{number}.{format}
. - Output
Storage MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Output Storage - Target bucket of a sampled screenshot. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - Watermark
Sets List<MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set> - List of up to 10 image or text watermarks.Note: This field may return null, indicating that no valid values can be obtained.
- Definition float64
- ID of a watermarking template.
- Object
Number MpsFormat Process Media Operation Media Process Task Sample Snapshot Task Set Object Number Format - Rule of the
{number}
variable in the sampled screenshot output path.Note: This field may return null, indicating that no valid values can be obtained. - Output
Object stringPath - Output path to a generated sampled screenshot, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_sampleSnapshot_{definition}_{number}.{format}
. - Output
Storage MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Output Storage - Target bucket of a sampled screenshot. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - Watermark
Sets []MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set - List of up to 10 image or text watermarks.Note: This field may return null, indicating that no valid values can be obtained.
- definition Double
- ID of a watermarking template.
- object
Number MpsFormat Process Media Operation Media Process Task Sample Snapshot Task Set Object Number Format - Rule of the
{number}
variable in the sampled screenshot output path.Note: This field may return null, indicating that no valid values can be obtained. - output
Object StringPath - Output path to a generated sampled screenshot, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_sampleSnapshot_{definition}_{number}.{format}
. - output
Storage MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Output Storage - Target bucket of a sampled screenshot. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - watermark
Sets List<MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set> - List of up to 10 image or text watermarks.Note: This field may return null, indicating that no valid values can be obtained.
- definition number
- ID of a watermarking template.
- object
Number MpsFormat Process Media Operation Media Process Task Sample Snapshot Task Set Object Number Format - Rule of the
{number}
variable in the sampled screenshot output path.Note: This field may return null, indicating that no valid values can be obtained. - output
Object stringPath - Output path to a generated sampled screenshot, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_sampleSnapshot_{definition}_{number}.{format}
. - output
Storage MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Output Storage - Target bucket of a sampled screenshot. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - watermark
Sets MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set[] - List of up to 10 image or text watermarks.Note: This field may return null, indicating that no valid values can be obtained.
- definition float
- ID of a watermarking template.
- object_
number_ Mpsformat Process Media Operation Media Process Task Sample Snapshot Task Set Object Number Format - Rule of the
{number}
variable in the sampled screenshot output path.Note: This field may return null, indicating that no valid values can be obtained. - output_
object_ strpath - Output path to a generated sampled screenshot, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_sampleSnapshot_{definition}_{number}.{format}
. - output_
storage MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Output Storage - Target bucket of a sampled screenshot. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - watermark_
sets Sequence[MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set] - List of up to 10 image or text watermarks.Note: This field may return null, indicating that no valid values can be obtained.
- definition Number
- ID of a watermarking template.
- object
Number Property MapFormat - Rule of the
{number}
variable in the sampled screenshot output path.Note: This field may return null, indicating that no valid values can be obtained. - output
Object StringPath - Output path to a generated sampled screenshot, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_sampleSnapshot_{definition}_{number}.{format}
. - output
Storage Property Map - Target bucket of a sampled screenshot. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - watermark
Sets List<Property Map> - List of up to 10 image or text watermarks.Note: This field may return null, indicating that no valid values can be obtained.
MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSetObjectNumberFormat, MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSetObjectNumberFormatArgs
- Increment double
- Increment of the
{number}
variable. Default value: 1. - Initial
Value double - Start value of the
{number}
variable. Default value: 0. - Min
Length double - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - Place
Holder string - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
- Increment float64
- Increment of the
{number}
variable. Default value: 1. - Initial
Value float64 - Start value of the
{number}
variable. Default value: 0. - Min
Length float64 - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - Place
Holder string - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
- increment Double
- Increment of the
{number}
variable. Default value: 1. - initial
Value Double - Start value of the
{number}
variable. Default value: 0. - min
Length Double - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - place
Holder String - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
- increment number
- Increment of the
{number}
variable. Default value: 1. - initial
Value number - Start value of the
{number}
variable. Default value: 0. - min
Length number - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - place
Holder string - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
- increment float
- Increment of the
{number}
variable. Default value: 1. - initial_
value float - Start value of the
{number}
variable. Default value: 0. - min_
length float - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - place_
holder str - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
- increment Number
- Increment of the
{number}
variable. Default value: 1. - initial
Value Number - Start value of the
{number}
variable. Default value: 0. - min
Length Number - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - place
Holder String - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSetOutputStorage, MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSetOutputStorageArgs
- Type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - Cos
Output MpsStorage Process Media Operation Media Process Task Sample Snapshot Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - S3Output
Storage MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- Type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - Cos
Output MpsStorage Process Media Operation Media Process Task Sample Snapshot Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - S3Output
Storage MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos
Output MpsStorage Process Media Operation Media Process Task Sample Snapshot Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3Output
Storage MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos
Output MpsStorage Process Media Operation Media Process Task Sample Snapshot Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3Output
Storage MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type str
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos_
output_ Mpsstorage Process Media Operation Media Process Task Sample Snapshot Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3_
output_ Mpsstorage Process Media Operation Media Process Task Sample Snapshot Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos
Output Property MapStorage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3Output
Storage Property Map - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSetOutputStorageCosOutputStorage, MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSetOutputStorageCosOutputStorageArgs
- Bucket string
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - Region string
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- Bucket string
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - Region string
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket String
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region String
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket string
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region string
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket str
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region str
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket String
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region String
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSetOutputStorageS3OutputStorage, MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSetOutputStorageS3OutputStorageArgs
- S3Bucket string
- The AWS S3 bucket.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to upload files to the AWS S3 object.
- S3Secret
Key string - The key required to upload files to the AWS S3 object.
- S3Bucket string
- The AWS S3 bucket.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to upload files to the AWS S3 object.
- S3Secret
Key string - The key required to upload files to the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to upload files to the AWS S3 object.
- s3Secret
Key String - The key required to upload files to the AWS S3 object.
- s3Bucket string
- The AWS S3 bucket.
- s3Region string
- The region of the AWS S3 bucket.
- s3Secret
Id string - The key ID required to upload files to the AWS S3 object.
- s3Secret
Key string - The key required to upload files to the AWS S3 object.
- s3_
bucket str - The AWS S3 bucket.
- s3_
region str - The region of the AWS S3 bucket.
- s3_
secret_ strid - The key ID required to upload files to the AWS S3 object.
- s3_
secret_ strkey - The key required to upload files to the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to upload files to the AWS S3 object.
- s3Secret
Key String - The key required to upload files to the AWS S3 object.
MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSetWatermarkSet, MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSetWatermarkSetArgs
- Definition double
- ID of a watermarking template.
- End
Time doubleOffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- Raw
Parameter MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - Start
Time doubleOffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- Svg
Content string - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - Text
Content string - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
- Definition float64
- ID of a watermarking template.
- End
Time float64Offset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- Raw
Parameter MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - Start
Time float64Offset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- Svg
Content string - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - Text
Content string - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
- definition Double
- ID of a watermarking template.
- end
Time DoubleOffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- raw
Parameter MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - start
Time DoubleOffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- svg
Content String - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - text
Content String - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
- definition number
- ID of a watermarking template.
- end
Time numberOffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- raw
Parameter MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - start
Time numberOffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- svg
Content string - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - text
Content string - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
- definition float
- ID of a watermarking template.
- end_
time_ floatoffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- raw_
parameter MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - start_
time_ floatoffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- svg_
content str - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - text_
content str - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
- definition Number
- ID of a watermarking template.
- end
Time NumberOffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- raw
Parameter Property Map - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - start
Time NumberOffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- svg
Content String - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - text
Content String - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSetWatermarkSetRawParameter, MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSetWatermarkSetRawParameterArgs
- Type string
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- Coordinate
Origin string - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- Image
Template MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - XPos string
- The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - YPos string
- The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- Type string
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- Coordinate
Origin string - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- Image
Template MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - XPos string
- The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - YPos string
- The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- type String
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- coordinate
Origin String - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- image
Template MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - x
Pos String - The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - y
Pos String - The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- type string
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- coordinate
Origin string - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- image
Template MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - x
Pos string - The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - y
Pos string - The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- type str
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- coordinate_
origin str - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- image_
template MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - x_
pos str - The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - y_
pos str - The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- type String
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- coordinate
Origin String - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- image
Template Property Map - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - x
Pos String - The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - y
Pos String - The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSetWatermarkSetRawParameterImageTemplate, MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSetWatermarkSetRawParameterImageTemplateArgs
- Image
Content MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template Image Content - Input content of watermark image. JPEG and PNG images are supported.
- Height string
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - Repeat
Type string - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - Width string
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
- Image
Content MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template Image Content - Input content of watermark image. JPEG and PNG images are supported.
- Height string
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - Repeat
Type string - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - Width string
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
- image
Content MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template Image Content - Input content of watermark image. JPEG and PNG images are supported.
- height String
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - repeat
Type String - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - width String
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
- image
Content MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template Image Content - Input content of watermark image. JPEG and PNG images are supported.
- height string
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - repeat
Type string - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - width string
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
- image_
content MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template Image Content - Input content of watermark image. JPEG and PNG images are supported.
- height str
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - repeat_
type str - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - width str
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
- image
Content Property Map - Input content of watermark image. JPEG and PNG images are supported.
- height String
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - repeat
Type String - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - width String
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSetWatermarkSetRawParameterImageTemplateImageContent, MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSetWatermarkSetRawParameterImageTemplateImageContentArgs
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - Cos
Input MpsInfo Process Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template Image Content Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - S3Input
Info MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template Image Content S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - Url
Input MpsInfo Process Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template Image Content Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - Cos
Input MpsInfo Process Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template Image Content Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - S3Input
Info MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template Image Content S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - Url
Input MpsInfo Process Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template Image Content Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input MpsInfo Process Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template Image Content Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template Image Content S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input MpsInfo Process Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template Image Content Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input MpsInfo Process Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template Image Content Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info MpsProcess Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template Image Content S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input MpsInfo Process Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template Image Content Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type str
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos_
input_ Mpsinfo Process Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template Image Content Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3_
input_ Mpsinfo Process Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template Image Content S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url_
input_ Mpsinfo Process Media Operation Media Process Task Sample Snapshot Task Set Watermark Set Raw Parameter Image Template Image Content Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input Property MapInfo - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info Property Map - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input Property MapInfo - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSetWatermarkSetRawParameterImageTemplateImageContentCosInputInfo, MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSetWatermarkSetRawParameterImageTemplateImageContentCosInputInfoArgs
MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSetWatermarkSetRawParameterImageTemplateImageContentS3InputInfo, MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSetWatermarkSetRawParameterImageTemplateImageContentS3InputInfoArgs
- S3Bucket string
- The AWS S3 bucket.
- S3Object string
- The path of the AWS S3 object.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to access the AWS S3 object.
- S3Secret
Key string - The key required to access the AWS S3 object.
- S3Bucket string
- The AWS S3 bucket.
- S3Object string
- The path of the AWS S3 object.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to access the AWS S3 object.
- S3Secret
Key string - The key required to access the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Object String
- The path of the AWS S3 object.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to access the AWS S3 object.
- s3Secret
Key String - The key required to access the AWS S3 object.
- s3Bucket string
- The AWS S3 bucket.
- s3Object string
- The path of the AWS S3 object.
- s3Region string
- The region of the AWS S3 bucket.
- s3Secret
Id string - The key ID required to access the AWS S3 object.
- s3Secret
Key string - The key required to access the AWS S3 object.
- s3_
bucket str - The AWS S3 bucket.
- s3_
object str - The path of the AWS S3 object.
- s3_
region str - The region of the AWS S3 bucket.
- s3_
secret_ strid - The key ID required to access the AWS S3 object.
- s3_
secret_ strkey - The key required to access the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Object String
- The path of the AWS S3 object.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to access the AWS S3 object.
- s3Secret
Key String - The key required to access the AWS S3 object.
MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSetWatermarkSetRawParameterImageTemplateImageContentUrlInputInfo, MpsProcessMediaOperationMediaProcessTaskSampleSnapshotTaskSetWatermarkSetRawParameterImageTemplateImageContentUrlInputInfoArgs
- Url string
- URL of a video.
- Url string
- URL of a video.
- url String
- URL of a video.
- url string
- URL of a video.
- url str
- URL of a video.
- url String
- URL of a video.
MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSet, MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSetArgs
- Definition double
- ID of a watermarking template.
- Ext
Time List<string>Offset Sets - List of screenshot time points in the format of
s
or%
:If the string ends ins
, it means that the time point is in seconds; for example,3.5s
means that the time point is the 3.5th second;If the string ends in%
, it means that the time point is the specified percentage of the video duration; for example,10%
means that the time point is 10% of the video duration. - Object
Number MpsFormat Process Media Operation Media Process Task Snapshot By Time Offset Task Set Object Number Format - Rule of the
{number}
variable in the time point screenshot output path.Note: This field may return null, indicating that no valid values can be obtained. - Output
Object stringPath - Output path to a generated time point screenshot, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_snapshotByTimeOffset_{definition}_{number}.{format}
. - Output
Storage MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Output Storage - Target bucket of a generated time point screenshot file. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - Time
Offset List<double>Sets - List of time points of screenshots in <font color=red>seconds</font>.
- Watermark
Sets List<MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set> - List of up to 10 image or text watermarks.Note: This field may return null, indicating that no valid values can be obtained.
- Definition float64
- ID of a watermarking template.
- Ext
Time []stringOffset Sets - List of screenshot time points in the format of
s
or%
:If the string ends ins
, it means that the time point is in seconds; for example,3.5s
means that the time point is the 3.5th second;If the string ends in%
, it means that the time point is the specified percentage of the video duration; for example,10%
means that the time point is 10% of the video duration. - Object
Number MpsFormat Process Media Operation Media Process Task Snapshot By Time Offset Task Set Object Number Format - Rule of the
{number}
variable in the time point screenshot output path.Note: This field may return null, indicating that no valid values can be obtained. - Output
Object stringPath - Output path to a generated time point screenshot, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_snapshotByTimeOffset_{definition}_{number}.{format}
. - Output
Storage MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Output Storage - Target bucket of a generated time point screenshot file. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - Time
Offset []float64Sets - List of time points of screenshots in <font color=red>seconds</font>.
- Watermark
Sets []MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set - List of up to 10 image or text watermarks.Note: This field may return null, indicating that no valid values can be obtained.
- definition Double
- ID of a watermarking template.
- ext
Time List<String>Offset Sets - List of screenshot time points in the format of
s
or%
:If the string ends ins
, it means that the time point is in seconds; for example,3.5s
means that the time point is the 3.5th second;If the string ends in%
, it means that the time point is the specified percentage of the video duration; for example,10%
means that the time point is 10% of the video duration. - object
Number MpsFormat Process Media Operation Media Process Task Snapshot By Time Offset Task Set Object Number Format - Rule of the
{number}
variable in the time point screenshot output path.Note: This field may return null, indicating that no valid values can be obtained. - output
Object StringPath - Output path to a generated time point screenshot, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_snapshotByTimeOffset_{definition}_{number}.{format}
. - output
Storage MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Output Storage - Target bucket of a generated time point screenshot file. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - time
Offset List<Double>Sets - List of time points of screenshots in <font color=red>seconds</font>.
- watermark
Sets List<MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set> - List of up to 10 image or text watermarks.Note: This field may return null, indicating that no valid values can be obtained.
- definition number
- ID of a watermarking template.
- ext
Time string[]Offset Sets - List of screenshot time points in the format of
s
or%
:If the string ends ins
, it means that the time point is in seconds; for example,3.5s
means that the time point is the 3.5th second;If the string ends in%
, it means that the time point is the specified percentage of the video duration; for example,10%
means that the time point is 10% of the video duration. - object
Number MpsFormat Process Media Operation Media Process Task Snapshot By Time Offset Task Set Object Number Format - Rule of the
{number}
variable in the time point screenshot output path.Note: This field may return null, indicating that no valid values can be obtained. - output
Object stringPath - Output path to a generated time point screenshot, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_snapshotByTimeOffset_{definition}_{number}.{format}
. - output
Storage MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Output Storage - Target bucket of a generated time point screenshot file. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - time
Offset number[]Sets - List of time points of screenshots in <font color=red>seconds</font>.
- watermark
Sets MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set[] - List of up to 10 image or text watermarks.Note: This field may return null, indicating that no valid values can be obtained.
- definition float
- ID of a watermarking template.
- ext_
time_ Sequence[str]offset_ sets - List of screenshot time points in the format of
s
or%
:If the string ends ins
, it means that the time point is in seconds; for example,3.5s
means that the time point is the 3.5th second;If the string ends in%
, it means that the time point is the specified percentage of the video duration; for example,10%
means that the time point is 10% of the video duration. - object_
number_ Mpsformat Process Media Operation Media Process Task Snapshot By Time Offset Task Set Object Number Format - Rule of the
{number}
variable in the time point screenshot output path.Note: This field may return null, indicating that no valid values can be obtained. - output_
object_ strpath - Output path to a generated time point screenshot, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_snapshotByTimeOffset_{definition}_{number}.{format}
. - output_
storage MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Output Storage - Target bucket of a generated time point screenshot file. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - time_
offset_ Sequence[float]sets - List of time points of screenshots in <font color=red>seconds</font>.
- watermark_
sets Sequence[MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set] - List of up to 10 image or text watermarks.Note: This field may return null, indicating that no valid values can be obtained.
- definition Number
- ID of a watermarking template.
- ext
Time List<String>Offset Sets - List of screenshot time points in the format of
s
or%
:If the string ends ins
, it means that the time point is in seconds; for example,3.5s
means that the time point is the 3.5th second;If the string ends in%
, it means that the time point is the specified percentage of the video duration; for example,10%
means that the time point is 10% of the video duration. - object
Number Property MapFormat - Rule of the
{number}
variable in the time point screenshot output path.Note: This field may return null, indicating that no valid values can be obtained. - output
Object StringPath - Output path to a generated time point screenshot, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_snapshotByTimeOffset_{definition}_{number}.{format}
. - output
Storage Property Map - Target bucket of a generated time point screenshot file. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - time
Offset List<Number>Sets - List of time points of screenshots in <font color=red>seconds</font>.
- watermark
Sets List<Property Map> - List of up to 10 image or text watermarks.Note: This field may return null, indicating that no valid values can be obtained.
MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSetObjectNumberFormat, MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSetObjectNumberFormatArgs
- Increment double
- Increment of the
{number}
variable. Default value: 1. - Initial
Value double - Start value of the
{number}
variable. Default value: 0. - Min
Length double - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - Place
Holder string - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
- Increment float64
- Increment of the
{number}
variable. Default value: 1. - Initial
Value float64 - Start value of the
{number}
variable. Default value: 0. - Min
Length float64 - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - Place
Holder string - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
- increment Double
- Increment of the
{number}
variable. Default value: 1. - initial
Value Double - Start value of the
{number}
variable. Default value: 0. - min
Length Double - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - place
Holder String - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
- increment number
- Increment of the
{number}
variable. Default value: 1. - initial
Value number - Start value of the
{number}
variable. Default value: 0. - min
Length number - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - place
Holder string - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
- increment float
- Increment of the
{number}
variable. Default value: 1. - initial_
value float - Start value of the
{number}
variable. Default value: 0. - min_
length float - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - place_
holder str - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
- increment Number
- Increment of the
{number}
variable. Default value: 1. - initial
Value Number - Start value of the
{number}
variable. Default value: 0. - min
Length Number - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - place
Holder String - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSetOutputStorage, MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSetOutputStorageArgs
- Type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - Cos
Output MpsStorage Process Media Operation Media Process Task Snapshot By Time Offset Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - S3Output
Storage MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- Type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - Cos
Output MpsStorage Process Media Operation Media Process Task Snapshot By Time Offset Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - S3Output
Storage MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos
Output MpsStorage Process Media Operation Media Process Task Snapshot By Time Offset Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3Output
Storage MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos
Output MpsStorage Process Media Operation Media Process Task Snapshot By Time Offset Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3Output
Storage MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type str
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos_
output_ Mpsstorage Process Media Operation Media Process Task Snapshot By Time Offset Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3_
output_ Mpsstorage Process Media Operation Media Process Task Snapshot By Time Offset Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos
Output Property MapStorage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3Output
Storage Property Map - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSetOutputStorageCosOutputStorage, MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSetOutputStorageCosOutputStorageArgs
- Bucket string
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - Region string
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- Bucket string
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - Region string
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket String
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region String
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket string
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region string
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket str
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region str
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket String
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region String
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSetOutputStorageS3OutputStorage, MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSetOutputStorageS3OutputStorageArgs
- S3Bucket string
- The AWS S3 bucket.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to upload files to the AWS S3 object.
- S3Secret
Key string - The key required to upload files to the AWS S3 object.
- S3Bucket string
- The AWS S3 bucket.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to upload files to the AWS S3 object.
- S3Secret
Key string - The key required to upload files to the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to upload files to the AWS S3 object.
- s3Secret
Key String - The key required to upload files to the AWS S3 object.
- s3Bucket string
- The AWS S3 bucket.
- s3Region string
- The region of the AWS S3 bucket.
- s3Secret
Id string - The key ID required to upload files to the AWS S3 object.
- s3Secret
Key string - The key required to upload files to the AWS S3 object.
- s3_
bucket str - The AWS S3 bucket.
- s3_
region str - The region of the AWS S3 bucket.
- s3_
secret_ strid - The key ID required to upload files to the AWS S3 object.
- s3_
secret_ strkey - The key required to upload files to the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to upload files to the AWS S3 object.
- s3Secret
Key String - The key required to upload files to the AWS S3 object.
MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSetWatermarkSet, MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSetWatermarkSetArgs
- Definition double
- ID of a watermarking template.
- End
Time doubleOffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- Raw
Parameter MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - Start
Time doubleOffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- Svg
Content string - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - Text
Content string - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
- Definition float64
- ID of a watermarking template.
- End
Time float64Offset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- Raw
Parameter MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - Start
Time float64Offset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- Svg
Content string - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - Text
Content string - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
- definition Double
- ID of a watermarking template.
- end
Time DoubleOffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- raw
Parameter MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - start
Time DoubleOffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- svg
Content String - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - text
Content String - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
- definition number
- ID of a watermarking template.
- end
Time numberOffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- raw
Parameter MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - start
Time numberOffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- svg
Content string - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - text
Content string - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
- definition float
- ID of a watermarking template.
- end_
time_ floatoffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- raw_
parameter MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - start_
time_ floatoffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- svg_
content str - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - text_
content str - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
- definition Number
- ID of a watermarking template.
- end
Time NumberOffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- raw
Parameter Property Map - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - start
Time NumberOffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- svg
Content String - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - text
Content String - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSetWatermarkSetRawParameter, MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSetWatermarkSetRawParameterArgs
- Type string
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- Coordinate
Origin string - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- Image
Template MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - XPos string
- The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - YPos string
- The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- Type string
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- Coordinate
Origin string - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- Image
Template MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - XPos string
- The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - YPos string
- The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- type String
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- coordinate
Origin String - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- image
Template MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - x
Pos String - The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - y
Pos String - The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- type string
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- coordinate
Origin string - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- image
Template MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - x
Pos string - The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - y
Pos string - The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- type str
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- coordinate_
origin str - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- image_
template MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - x_
pos str - The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - y_
pos str - The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- type String
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- coordinate
Origin String - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- image
Template Property Map - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - x
Pos String - The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - y
Pos String - The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSetWatermarkSetRawParameterImageTemplate, MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSetWatermarkSetRawParameterImageTemplateArgs
- Image
Content MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template Image Content - Input content of watermark image. JPEG and PNG images are supported.
- Height string
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - Repeat
Type string - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - Width string
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
- Image
Content MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template Image Content - Input content of watermark image. JPEG and PNG images are supported.
- Height string
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - Repeat
Type string - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - Width string
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
- image
Content MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template Image Content - Input content of watermark image. JPEG and PNG images are supported.
- height String
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - repeat
Type String - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - width String
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
- image
Content MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template Image Content - Input content of watermark image. JPEG and PNG images are supported.
- height string
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - repeat
Type string - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - width string
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
- image_
content MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template Image Content - Input content of watermark image. JPEG and PNG images are supported.
- height str
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - repeat_
type str - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - width str
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
- image
Content Property Map - Input content of watermark image. JPEG and PNG images are supported.
- height String
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - repeat
Type String - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - width String
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSetWatermarkSetRawParameterImageTemplateImageContent, MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSetWatermarkSetRawParameterImageTemplateImageContentArgs
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - Cos
Input MpsInfo Process Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template Image Content Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - S3Input
Info MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template Image Content S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - Url
Input MpsInfo Process Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template Image Content Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - Cos
Input MpsInfo Process Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template Image Content Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - S3Input
Info MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template Image Content S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - Url
Input MpsInfo Process Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template Image Content Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input MpsInfo Process Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template Image Content Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template Image Content S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input MpsInfo Process Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template Image Content Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input MpsInfo Process Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template Image Content Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info MpsProcess Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template Image Content S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input MpsInfo Process Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template Image Content Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type str
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos_
input_ Mpsinfo Process Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template Image Content Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3_
input_ Mpsinfo Process Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template Image Content S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url_
input_ Mpsinfo Process Media Operation Media Process Task Snapshot By Time Offset Task Set Watermark Set Raw Parameter Image Template Image Content Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input Property MapInfo - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info Property Map - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input Property MapInfo - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSetWatermarkSetRawParameterImageTemplateImageContentCosInputInfo, MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSetWatermarkSetRawParameterImageTemplateImageContentCosInputInfoArgs
MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSetWatermarkSetRawParameterImageTemplateImageContentS3InputInfo, MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSetWatermarkSetRawParameterImageTemplateImageContentS3InputInfoArgs
- S3Bucket string
- The AWS S3 bucket.
- S3Object string
- The path of the AWS S3 object.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to access the AWS S3 object.
- S3Secret
Key string - The key required to access the AWS S3 object.
- S3Bucket string
- The AWS S3 bucket.
- S3Object string
- The path of the AWS S3 object.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to access the AWS S3 object.
- S3Secret
Key string - The key required to access the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Object String
- The path of the AWS S3 object.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to access the AWS S3 object.
- s3Secret
Key String - The key required to access the AWS S3 object.
- s3Bucket string
- The AWS S3 bucket.
- s3Object string
- The path of the AWS S3 object.
- s3Region string
- The region of the AWS S3 bucket.
- s3Secret
Id string - The key ID required to access the AWS S3 object.
- s3Secret
Key string - The key required to access the AWS S3 object.
- s3_
bucket str - The AWS S3 bucket.
- s3_
object str - The path of the AWS S3 object.
- s3_
region str - The region of the AWS S3 bucket.
- s3_
secret_ strid - The key ID required to access the AWS S3 object.
- s3_
secret_ strkey - The key required to access the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Object String
- The path of the AWS S3 object.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to access the AWS S3 object.
- s3Secret
Key String - The key required to access the AWS S3 object.
MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSetWatermarkSetRawParameterImageTemplateImageContentUrlInputInfo, MpsProcessMediaOperationMediaProcessTaskSnapshotByTimeOffsetTaskSetWatermarkSetRawParameterImageTemplateImageContentUrlInputInfoArgs
- Url string
- URL of a video.
- Url string
- URL of a video.
- url String
- URL of a video.
- url string
- URL of a video.
- url str
- URL of a video.
- url String
- URL of a video.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSet, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetArgs
- Definition double
- ID of a watermarking template.
- End
Time doubleOffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- Head
Tail MpsParameter Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter - Opening and closing credits parametersNote: this field may return
null
, indicating that no valid value was found. - Mosaic
Sets List<MpsProcess Media Operation Media Process Task Transcode Task Set Mosaic Set> - List of blurs. Up to 10 ones can be supported.
- Object
Number MpsFormat Process Media Operation Media Process Task Transcode Task Set Object Number Format - Rule of the
{number}
variable in the output path after transcoding.Note: This field may return null, indicating that no valid values can be obtained. - Output
Object stringPath - Path to a primary output file, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_transcode_{definition}.{format}
. - Output
Storage MpsProcess Media Operation Media Process Task Transcode Task Set Output Storage - Target bucket of an output file. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - Override
Parameter MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter - Video transcoding custom parameter, which is valid when
Definition
is not 0.When any parameters in this structure are entered, they will be used to override corresponding parameters in templates.This parameter is used in highly customized scenarios. We recommend you only useDefinition
to specify the transcoding parameter.Note: this field may returnnull
, indicating that no valid value was found. - Raw
Parameter MpsProcess Media Operation Media Process Task Transcode Task Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - Segment
Object stringName - Path to an output file part (the path to ts during transcoding to HLS), which can only be a relative path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_transcode_{definition}_{number}.{format}
. - Start
Time doubleOffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- Watermark
Sets List<MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set> - List of up to 10 image or text watermarks.Note: This field may return null, indicating that no valid values can be obtained.
- Definition float64
- ID of a watermarking template.
- End
Time float64Offset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- Head
Tail MpsParameter Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter - Opening and closing credits parametersNote: this field may return
null
, indicating that no valid value was found. - Mosaic
Sets []MpsProcess Media Operation Media Process Task Transcode Task Set Mosaic Set - List of blurs. Up to 10 ones can be supported.
- Object
Number MpsFormat Process Media Operation Media Process Task Transcode Task Set Object Number Format - Rule of the
{number}
variable in the output path after transcoding.Note: This field may return null, indicating that no valid values can be obtained. - Output
Object stringPath - Path to a primary output file, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_transcode_{definition}.{format}
. - Output
Storage MpsProcess Media Operation Media Process Task Transcode Task Set Output Storage - Target bucket of an output file. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - Override
Parameter MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter - Video transcoding custom parameter, which is valid when
Definition
is not 0.When any parameters in this structure are entered, they will be used to override corresponding parameters in templates.This parameter is used in highly customized scenarios. We recommend you only useDefinition
to specify the transcoding parameter.Note: this field may returnnull
, indicating that no valid value was found. - Raw
Parameter MpsProcess Media Operation Media Process Task Transcode Task Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - Segment
Object stringName - Path to an output file part (the path to ts during transcoding to HLS), which can only be a relative path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_transcode_{definition}_{number}.{format}
. - Start
Time float64Offset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- Watermark
Sets []MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set - List of up to 10 image or text watermarks.Note: This field may return null, indicating that no valid values can be obtained.
- definition Double
- ID of a watermarking template.
- end
Time DoubleOffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- head
Tail MpsParameter Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter - Opening and closing credits parametersNote: this field may return
null
, indicating that no valid value was found. - mosaic
Sets List<MpsProcess Media Operation Media Process Task Transcode Task Set Mosaic Set> - List of blurs. Up to 10 ones can be supported.
- object
Number MpsFormat Process Media Operation Media Process Task Transcode Task Set Object Number Format - Rule of the
{number}
variable in the output path after transcoding.Note: This field may return null, indicating that no valid values can be obtained. - output
Object StringPath - Path to a primary output file, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_transcode_{definition}.{format}
. - output
Storage MpsProcess Media Operation Media Process Task Transcode Task Set Output Storage - Target bucket of an output file. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - override
Parameter MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter - Video transcoding custom parameter, which is valid when
Definition
is not 0.When any parameters in this structure are entered, they will be used to override corresponding parameters in templates.This parameter is used in highly customized scenarios. We recommend you only useDefinition
to specify the transcoding parameter.Note: this field may returnnull
, indicating that no valid value was found. - raw
Parameter MpsProcess Media Operation Media Process Task Transcode Task Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - segment
Object StringName - Path to an output file part (the path to ts during transcoding to HLS), which can only be a relative path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_transcode_{definition}_{number}.{format}
. - start
Time DoubleOffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- watermark
Sets List<MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set> - List of up to 10 image or text watermarks.Note: This field may return null, indicating that no valid values can be obtained.
- definition number
- ID of a watermarking template.
- end
Time numberOffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- head
Tail MpsParameter Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter - Opening and closing credits parametersNote: this field may return
null
, indicating that no valid value was found. - mosaic
Sets MpsProcess Media Operation Media Process Task Transcode Task Set Mosaic Set[] - List of blurs. Up to 10 ones can be supported.
- object
Number MpsFormat Process Media Operation Media Process Task Transcode Task Set Object Number Format - Rule of the
{number}
variable in the output path after transcoding.Note: This field may return null, indicating that no valid values can be obtained. - output
Object stringPath - Path to a primary output file, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_transcode_{definition}.{format}
. - output
Storage MpsProcess Media Operation Media Process Task Transcode Task Set Output Storage - Target bucket of an output file. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - override
Parameter MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter - Video transcoding custom parameter, which is valid when
Definition
is not 0.When any parameters in this structure are entered, they will be used to override corresponding parameters in templates.This parameter is used in highly customized scenarios. We recommend you only useDefinition
to specify the transcoding parameter.Note: this field may returnnull
, indicating that no valid value was found. - raw
Parameter MpsProcess Media Operation Media Process Task Transcode Task Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - segment
Object stringName - Path to an output file part (the path to ts during transcoding to HLS), which can only be a relative path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_transcode_{definition}_{number}.{format}
. - start
Time numberOffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- watermark
Sets MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set[] - List of up to 10 image or text watermarks.Note: This field may return null, indicating that no valid values can be obtained.
- definition float
- ID of a watermarking template.
- end_
time_ floatoffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- head_
tail_ Mpsparameter Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter - Opening and closing credits parametersNote: this field may return
null
, indicating that no valid value was found. - mosaic_
sets Sequence[MpsProcess Media Operation Media Process Task Transcode Task Set Mosaic Set] - List of blurs. Up to 10 ones can be supported.
- object_
number_ Mpsformat Process Media Operation Media Process Task Transcode Task Set Object Number Format - Rule of the
{number}
variable in the output path after transcoding.Note: This field may return null, indicating that no valid values can be obtained. - output_
object_ strpath - Path to a primary output file, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_transcode_{definition}.{format}
. - output_
storage MpsProcess Media Operation Media Process Task Transcode Task Set Output Storage - Target bucket of an output file. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - override_
parameter MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter - Video transcoding custom parameter, which is valid when
Definition
is not 0.When any parameters in this structure are entered, they will be used to override corresponding parameters in templates.This parameter is used in highly customized scenarios. We recommend you only useDefinition
to specify the transcoding parameter.Note: this field may returnnull
, indicating that no valid value was found. - raw_
parameter MpsProcess Media Operation Media Process Task Transcode Task Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - segment_
object_ strname - Path to an output file part (the path to ts during transcoding to HLS), which can only be a relative path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_transcode_{definition}_{number}.{format}
. - start_
time_ floatoffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- watermark_
sets Sequence[MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set] - List of up to 10 image or text watermarks.Note: This field may return null, indicating that no valid values can be obtained.
- definition Number
- ID of a watermarking template.
- end
Time NumberOffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- head
Tail Property MapParameter - Opening and closing credits parametersNote: this field may return
null
, indicating that no valid value was found. - mosaic
Sets List<Property Map> - List of blurs. Up to 10 ones can be supported.
- object
Number Property MapFormat - Rule of the
{number}
variable in the output path after transcoding.Note: This field may return null, indicating that no valid values can be obtained. - output
Object StringPath - Path to a primary output file, which can be a relative path or an absolute path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_transcode_{definition}.{format}
. - output
Storage Property Map - Target bucket of an output file. If this parameter is left empty, the
OutputStorage
value of the upper folder will be inherited.Note: This field may return null, indicating that no valid values can be obtained. - override
Parameter Property Map - Video transcoding custom parameter, which is valid when
Definition
is not 0.When any parameters in this structure are entered, they will be used to override corresponding parameters in templates.This parameter is used in highly customized scenarios. We recommend you only useDefinition
to specify the transcoding parameter.Note: this field may returnnull
, indicating that no valid value was found. - raw
Parameter Property Map - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - segment
Object StringName - Path to an output file part (the path to ts during transcoding to HLS), which can only be a relative path. If this parameter is left empty, the following relative path will be used by default:
{inputName}_transcode_{definition}_{number}.{format}
. - start
Time NumberOffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- watermark
Sets List<Property Map> - List of up to 10 image or text watermarks.Note: This field may return null, indicating that no valid values can be obtained.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetHeadTailParameter, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetHeadTailParameterArgs
- head
Sets List<Property Map> - Opening credits list.
- tail
Sets List<Property Map> - Closing credits list.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetHeadTailParameterHeadSet, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetHeadTailParameterHeadSetArgs
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - Cos
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter Head Set Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - S3Input
Info MpsProcess Media Operation Media Process Task Transcode Task Set Head Tail Parameter Head Set S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - Url
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter Head Set Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - Cos
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter Head Set Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - S3Input
Info MpsProcess Media Operation Media Process Task Transcode Task Set Head Tail Parameter Head Set S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - Url
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter Head Set Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter Head Set Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info MpsProcess Media Operation Media Process Task Transcode Task Set Head Tail Parameter Head Set S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter Head Set Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter Head Set Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info MpsProcess Media Operation Media Process Task Transcode Task Set Head Tail Parameter Head Set S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter Head Set Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type str
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos_
input_ Mpsinfo Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter Head Set Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3_
input_ Mpsinfo Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter Head Set S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url_
input_ Mpsinfo Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter Head Set Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input Property MapInfo - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info Property Map - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input Property MapInfo - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetHeadTailParameterHeadSetCosInputInfo, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetHeadTailParameterHeadSetCosInputInfoArgs
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetHeadTailParameterHeadSetS3InputInfo, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetHeadTailParameterHeadSetS3InputInfoArgs
- S3Bucket string
- The AWS S3 bucket.
- S3Object string
- The path of the AWS S3 object.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to access the AWS S3 object.
- S3Secret
Key string - The key required to access the AWS S3 object.
- S3Bucket string
- The AWS S3 bucket.
- S3Object string
- The path of the AWS S3 object.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to access the AWS S3 object.
- S3Secret
Key string - The key required to access the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Object String
- The path of the AWS S3 object.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to access the AWS S3 object.
- s3Secret
Key String - The key required to access the AWS S3 object.
- s3Bucket string
- The AWS S3 bucket.
- s3Object string
- The path of the AWS S3 object.
- s3Region string
- The region of the AWS S3 bucket.
- s3Secret
Id string - The key ID required to access the AWS S3 object.
- s3Secret
Key string - The key required to access the AWS S3 object.
- s3_
bucket str - The AWS S3 bucket.
- s3_
object str - The path of the AWS S3 object.
- s3_
region str - The region of the AWS S3 bucket.
- s3_
secret_ strid - The key ID required to access the AWS S3 object.
- s3_
secret_ strkey - The key required to access the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Object String
- The path of the AWS S3 object.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to access the AWS S3 object.
- s3Secret
Key String - The key required to access the AWS S3 object.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetHeadTailParameterHeadSetUrlInputInfo, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetHeadTailParameterHeadSetUrlInputInfoArgs
- Url string
- URL of a video.
- Url string
- URL of a video.
- url String
- URL of a video.
- url string
- URL of a video.
- url str
- URL of a video.
- url String
- URL of a video.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetHeadTailParameterTailSet, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetHeadTailParameterTailSetArgs
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - Cos
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter Tail Set Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - S3Input
Info MpsProcess Media Operation Media Process Task Transcode Task Set Head Tail Parameter Tail Set S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - Url
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter Tail Set Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - Cos
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter Tail Set Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - S3Input
Info MpsProcess Media Operation Media Process Task Transcode Task Set Head Tail Parameter Tail Set S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - Url
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter Tail Set Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter Tail Set Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info MpsProcess Media Operation Media Process Task Transcode Task Set Head Tail Parameter Tail Set S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter Tail Set Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter Tail Set Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info MpsProcess Media Operation Media Process Task Transcode Task Set Head Tail Parameter Tail Set S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter Tail Set Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type str
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos_
input_ Mpsinfo Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter Tail Set Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3_
input_ Mpsinfo Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter Tail Set S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url_
input_ Mpsinfo Process Media Operation Media Process Task Transcode Task Set Head Tail Parameter Tail Set Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input Property MapInfo - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info Property Map - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input Property MapInfo - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetHeadTailParameterTailSetCosInputInfo, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetHeadTailParameterTailSetCosInputInfoArgs
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetHeadTailParameterTailSetS3InputInfo, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetHeadTailParameterTailSetS3InputInfoArgs
- S3Bucket string
- The AWS S3 bucket.
- S3Object string
- The path of the AWS S3 object.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to access the AWS S3 object.
- S3Secret
Key string - The key required to access the AWS S3 object.
- S3Bucket string
- The AWS S3 bucket.
- S3Object string
- The path of the AWS S3 object.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to access the AWS S3 object.
- S3Secret
Key string - The key required to access the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Object String
- The path of the AWS S3 object.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to access the AWS S3 object.
- s3Secret
Key String - The key required to access the AWS S3 object.
- s3Bucket string
- The AWS S3 bucket.
- s3Object string
- The path of the AWS S3 object.
- s3Region string
- The region of the AWS S3 bucket.
- s3Secret
Id string - The key ID required to access the AWS S3 object.
- s3Secret
Key string - The key required to access the AWS S3 object.
- s3_
bucket str - The AWS S3 bucket.
- s3_
object str - The path of the AWS S3 object.
- s3_
region str - The region of the AWS S3 bucket.
- s3_
secret_ strid - The key ID required to access the AWS S3 object.
- s3_
secret_ strkey - The key required to access the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Object String
- The path of the AWS S3 object.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to access the AWS S3 object.
- s3Secret
Key String - The key required to access the AWS S3 object.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetHeadTailParameterTailSetUrlInputInfo, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetHeadTailParameterTailSetUrlInputInfoArgs
- Url string
- URL of a video.
- Url string
- URL of a video.
- url String
- URL of a video.
- url string
- URL of a video.
- url str
- URL of a video.
- url String
- URL of a video.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetMosaicSet, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetMosaicSetArgs
- Coordinate
Origin string - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the blur is in the top-left corner of the image or text.Default value: TopLeft.
- End
Time doubleOffset - End time offset of blur in seconds.If this parameter is left empty or 0 is entered, the blur will exist till the last video frame;If this value is greater than 0 (e.g., n), the blur will exist till second n;If this value is smaller than 0 (e.g., -n), the blur will exist till second n before the last video frame.
- Height string
- Blur height. % and px formats are supported:If the string ends in %, the
Height
of the blur will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the blur will be in px; for example,100px
means thatHeight
is 100 px.Default value: 10%. - Start
Time doubleOffset - Start time offset of blur in seconds. If this parameter is left empty or 0 is entered, the blur will appear upon the first video frame.If this parameter is left empty or 0 is entered, the blur will appear upon the first video frame;If this value is greater than 0 (e.g., n), the blur will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the blur will appear at second n before the last video frame.
- Width string
- Blur width. % and px formats are supported:If the string ends in %, the
Width
of the blur will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the blur will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%. - XPos string
- The horizontal position of the origin of the blur relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the blur will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the blur will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - YPos string
- Vertical position of the origin of blur relative to the origin of coordinates of video. % and px formats are supported:If the string ends in %, the
YPos
of the blur will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the blur will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- Coordinate
Origin string - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the blur is in the top-left corner of the image or text.Default value: TopLeft.
- End
Time float64Offset - End time offset of blur in seconds.If this parameter is left empty or 0 is entered, the blur will exist till the last video frame;If this value is greater than 0 (e.g., n), the blur will exist till second n;If this value is smaller than 0 (e.g., -n), the blur will exist till second n before the last video frame.
- Height string
- Blur height. % and px formats are supported:If the string ends in %, the
Height
of the blur will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the blur will be in px; for example,100px
means thatHeight
is 100 px.Default value: 10%. - Start
Time float64Offset - Start time offset of blur in seconds. If this parameter is left empty or 0 is entered, the blur will appear upon the first video frame.If this parameter is left empty or 0 is entered, the blur will appear upon the first video frame;If this value is greater than 0 (e.g., n), the blur will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the blur will appear at second n before the last video frame.
- Width string
- Blur width. % and px formats are supported:If the string ends in %, the
Width
of the blur will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the blur will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%. - XPos string
- The horizontal position of the origin of the blur relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the blur will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the blur will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - YPos string
- Vertical position of the origin of blur relative to the origin of coordinates of video. % and px formats are supported:If the string ends in %, the
YPos
of the blur will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the blur will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- coordinate
Origin String - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the blur is in the top-left corner of the image or text.Default value: TopLeft.
- end
Time DoubleOffset - End time offset of blur in seconds.If this parameter is left empty or 0 is entered, the blur will exist till the last video frame;If this value is greater than 0 (e.g., n), the blur will exist till second n;If this value is smaller than 0 (e.g., -n), the blur will exist till second n before the last video frame.
- height String
- Blur height. % and px formats are supported:If the string ends in %, the
Height
of the blur will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the blur will be in px; for example,100px
means thatHeight
is 100 px.Default value: 10%. - start
Time DoubleOffset - Start time offset of blur in seconds. If this parameter is left empty or 0 is entered, the blur will appear upon the first video frame.If this parameter is left empty or 0 is entered, the blur will appear upon the first video frame;If this value is greater than 0 (e.g., n), the blur will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the blur will appear at second n before the last video frame.
- width String
- Blur width. % and px formats are supported:If the string ends in %, the
Width
of the blur will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the blur will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%. - x
Pos String - The horizontal position of the origin of the blur relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the blur will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the blur will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - y
Pos String - Vertical position of the origin of blur relative to the origin of coordinates of video. % and px formats are supported:If the string ends in %, the
YPos
of the blur will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the blur will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- coordinate
Origin string - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the blur is in the top-left corner of the image or text.Default value: TopLeft.
- end
Time numberOffset - End time offset of blur in seconds.If this parameter is left empty or 0 is entered, the blur will exist till the last video frame;If this value is greater than 0 (e.g., n), the blur will exist till second n;If this value is smaller than 0 (e.g., -n), the blur will exist till second n before the last video frame.
- height string
- Blur height. % and px formats are supported:If the string ends in %, the
Height
of the blur will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the blur will be in px; for example,100px
means thatHeight
is 100 px.Default value: 10%. - start
Time numberOffset - Start time offset of blur in seconds. If this parameter is left empty or 0 is entered, the blur will appear upon the first video frame.If this parameter is left empty or 0 is entered, the blur will appear upon the first video frame;If this value is greater than 0 (e.g., n), the blur will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the blur will appear at second n before the last video frame.
- width string
- Blur width. % and px formats are supported:If the string ends in %, the
Width
of the blur will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the blur will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%. - x
Pos string - The horizontal position of the origin of the blur relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the blur will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the blur will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - y
Pos string - Vertical position of the origin of blur relative to the origin of coordinates of video. % and px formats are supported:If the string ends in %, the
YPos
of the blur will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the blur will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- coordinate_
origin str - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the blur is in the top-left corner of the image or text.Default value: TopLeft.
- end_
time_ floatoffset - End time offset of blur in seconds.If this parameter is left empty or 0 is entered, the blur will exist till the last video frame;If this value is greater than 0 (e.g., n), the blur will exist till second n;If this value is smaller than 0 (e.g., -n), the blur will exist till second n before the last video frame.
- height str
- Blur height. % and px formats are supported:If the string ends in %, the
Height
of the blur will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the blur will be in px; for example,100px
means thatHeight
is 100 px.Default value: 10%. - start_
time_ floatoffset - Start time offset of blur in seconds. If this parameter is left empty or 0 is entered, the blur will appear upon the first video frame.If this parameter is left empty or 0 is entered, the blur will appear upon the first video frame;If this value is greater than 0 (e.g., n), the blur will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the blur will appear at second n before the last video frame.
- width str
- Blur width. % and px formats are supported:If the string ends in %, the
Width
of the blur will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the blur will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%. - x_
pos str - The horizontal position of the origin of the blur relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the blur will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the blur will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - y_
pos str - Vertical position of the origin of blur relative to the origin of coordinates of video. % and px formats are supported:If the string ends in %, the
YPos
of the blur will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the blur will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- coordinate
Origin String - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the blur is in the top-left corner of the image or text.Default value: TopLeft.
- end
Time NumberOffset - End time offset of blur in seconds.If this parameter is left empty or 0 is entered, the blur will exist till the last video frame;If this value is greater than 0 (e.g., n), the blur will exist till second n;If this value is smaller than 0 (e.g., -n), the blur will exist till second n before the last video frame.
- height String
- Blur height. % and px formats are supported:If the string ends in %, the
Height
of the blur will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the blur will be in px; for example,100px
means thatHeight
is 100 px.Default value: 10%. - start
Time NumberOffset - Start time offset of blur in seconds. If this parameter is left empty or 0 is entered, the blur will appear upon the first video frame.If this parameter is left empty or 0 is entered, the blur will appear upon the first video frame;If this value is greater than 0 (e.g., n), the blur will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the blur will appear at second n before the last video frame.
- width String
- Blur width. % and px formats are supported:If the string ends in %, the
Width
of the blur will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the blur will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%. - x
Pos String - The horizontal position of the origin of the blur relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the blur will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the blur will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - y
Pos String - Vertical position of the origin of blur relative to the origin of coordinates of video. % and px formats are supported:If the string ends in %, the
YPos
of the blur will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the blur will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetObjectNumberFormat, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetObjectNumberFormatArgs
- Increment double
- Increment of the
{number}
variable. Default value: 1. - Initial
Value double - Start value of the
{number}
variable. Default value: 0. - Min
Length double - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - Place
Holder string - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
- Increment float64
- Increment of the
{number}
variable. Default value: 1. - Initial
Value float64 - Start value of the
{number}
variable. Default value: 0. - Min
Length float64 - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - Place
Holder string - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
- increment Double
- Increment of the
{number}
variable. Default value: 1. - initial
Value Double - Start value of the
{number}
variable. Default value: 0. - min
Length Double - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - place
Holder String - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
- increment number
- Increment of the
{number}
variable. Default value: 1. - initial
Value number - Start value of the
{number}
variable. Default value: 0. - min
Length number - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - place
Holder string - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
- increment float
- Increment of the
{number}
variable. Default value: 1. - initial_
value float - Start value of the
{number}
variable. Default value: 0. - min_
length float - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - place_
holder str - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
- increment Number
- Increment of the
{number}
variable. Default value: 1. - initial
Value Number - Start value of the
{number}
variable. Default value: 0. - min
Length Number - Minimum length of the
{number}
variable. A placeholder will be used if the variable length is below the minimum requirement. Default value: 1. - place
Holder String - Placeholder used when the
{number}
variable length is below the minimum requirement. Default value: 0.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOutputStorage, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOutputStorageArgs
- Type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - Cos
Output MpsStorage Process Media Operation Media Process Task Transcode Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - S3Output
Storage MpsProcess Media Operation Media Process Task Transcode Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- Type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - Cos
Output MpsStorage Process Media Operation Media Process Task Transcode Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - S3Output
Storage MpsProcess Media Operation Media Process Task Transcode Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos
Output MpsStorage Process Media Operation Media Process Task Transcode Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3Output
Storage MpsProcess Media Operation Media Process Task Transcode Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos
Output MpsStorage Process Media Operation Media Process Task Transcode Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3Output
Storage MpsProcess Media Operation Media Process Task Transcode Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type str
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos_
output_ Mpsstorage Process Media Operation Media Process Task Transcode Task Set Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3_
output_ Mpsstorage Process Media Operation Media Process Task Transcode Task Set Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos
Output Property MapStorage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3Output
Storage Property Map - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOutputStorageCosOutputStorage, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOutputStorageCosOutputStorageArgs
- Bucket string
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - Region string
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- Bucket string
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - Region string
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket String
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region String
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket string
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region string
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket str
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region str
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket String
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region String
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOutputStorageS3OutputStorage, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOutputStorageS3OutputStorageArgs
- S3Bucket string
- The AWS S3 bucket.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to upload files to the AWS S3 object.
- S3Secret
Key string - The key required to upload files to the AWS S3 object.
- S3Bucket string
- The AWS S3 bucket.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to upload files to the AWS S3 object.
- S3Secret
Key string - The key required to upload files to the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to upload files to the AWS S3 object.
- s3Secret
Key String - The key required to upload files to the AWS S3 object.
- s3Bucket string
- The AWS S3 bucket.
- s3Region string
- The region of the AWS S3 bucket.
- s3Secret
Id string - The key ID required to upload files to the AWS S3 object.
- s3Secret
Key string - The key required to upload files to the AWS S3 object.
- s3_
bucket str - The AWS S3 bucket.
- s3_
region str - The region of the AWS S3 bucket.
- s3_
secret_ strid - The key ID required to upload files to the AWS S3 object.
- s3_
secret_ strkey - The key required to upload files to the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to upload files to the AWS S3 object.
- s3Secret
Key String - The key required to upload files to the AWS S3 object.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameter, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterArgs
- Add
On List<MpsSubtitles Process Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle> - The subtitle file to add.Note: This field may return null, indicating that no valid values can be obtained.
- Addon
Audio List<MpsStreams Process Media Operation Media Process Task Transcode Task Set Override Parameter Addon Audio Stream> - The information of the external audio track to add.Note: This field may return null, indicating that no valid values can be obtained.
- Audio
Template MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Audio Template - Audio stream configuration parameter.
- Container string
- Container format. Valid values: mp4, flv, hls, mp3, flac, ogg, and m4a; mp3, flac, ogg, and m4a are formats of audio files.
- Remove
Audio double - Whether to remove audio data. Valid values:0: retain1: remove.
- Remove
Video double - Whether to remove video data. Valid values:0: retain1: remove.
- Std
Ext stringInfo - An extended field for transcoding.Note: This field may return null, indicating that no valid values can be obtained.
- Subtitle
Template MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Subtitle Template - The subtitle settings.Note: This field may return null, indicating that no valid values can be obtained.
- Tehd
Config MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Tehd Config - The TSC transcoding parameters.Note: This field may return null, indicating that no valid values can be obtained.
- Video
Template MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Video Template - Video stream configuration parameter.
- Add
On []MpsSubtitles Process Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle - The subtitle file to add.Note: This field may return null, indicating that no valid values can be obtained.
- Addon
Audio []MpsStreams Process Media Operation Media Process Task Transcode Task Set Override Parameter Addon Audio Stream - The information of the external audio track to add.Note: This field may return null, indicating that no valid values can be obtained.
- Audio
Template MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Audio Template - Audio stream configuration parameter.
- Container string
- Container format. Valid values: mp4, flv, hls, mp3, flac, ogg, and m4a; mp3, flac, ogg, and m4a are formats of audio files.
- Remove
Audio float64 - Whether to remove audio data. Valid values:0: retain1: remove.
- Remove
Video float64 - Whether to remove video data. Valid values:0: retain1: remove.
- Std
Ext stringInfo - An extended field for transcoding.Note: This field may return null, indicating that no valid values can be obtained.
- Subtitle
Template MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Subtitle Template - The subtitle settings.Note: This field may return null, indicating that no valid values can be obtained.
- Tehd
Config MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Tehd Config - The TSC transcoding parameters.Note: This field may return null, indicating that no valid values can be obtained.
- Video
Template MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Video Template - Video stream configuration parameter.
- add
On List<MpsSubtitles Process Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle> - The subtitle file to add.Note: This field may return null, indicating that no valid values can be obtained.
- addon
Audio List<MpsStreams Process Media Operation Media Process Task Transcode Task Set Override Parameter Addon Audio Stream> - The information of the external audio track to add.Note: This field may return null, indicating that no valid values can be obtained.
- audio
Template MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Audio Template - Audio stream configuration parameter.
- container String
- Container format. Valid values: mp4, flv, hls, mp3, flac, ogg, and m4a; mp3, flac, ogg, and m4a are formats of audio files.
- remove
Audio Double - Whether to remove audio data. Valid values:0: retain1: remove.
- remove
Video Double - Whether to remove video data. Valid values:0: retain1: remove.
- std
Ext StringInfo - An extended field for transcoding.Note: This field may return null, indicating that no valid values can be obtained.
- subtitle
Template MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Subtitle Template - The subtitle settings.Note: This field may return null, indicating that no valid values can be obtained.
- tehd
Config MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Tehd Config - The TSC transcoding parameters.Note: This field may return null, indicating that no valid values can be obtained.
- video
Template MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Video Template - Video stream configuration parameter.
- add
On MpsSubtitles Process Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle[] - The subtitle file to add.Note: This field may return null, indicating that no valid values can be obtained.
- addon
Audio MpsStreams Process Media Operation Media Process Task Transcode Task Set Override Parameter Addon Audio Stream[] - The information of the external audio track to add.Note: This field may return null, indicating that no valid values can be obtained.
- audio
Template MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Audio Template - Audio stream configuration parameter.
- container string
- Container format. Valid values: mp4, flv, hls, mp3, flac, ogg, and m4a; mp3, flac, ogg, and m4a are formats of audio files.
- remove
Audio number - Whether to remove audio data. Valid values:0: retain1: remove.
- remove
Video number - Whether to remove video data. Valid values:0: retain1: remove.
- std
Ext stringInfo - An extended field for transcoding.Note: This field may return null, indicating that no valid values can be obtained.
- subtitle
Template MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Subtitle Template - The subtitle settings.Note: This field may return null, indicating that no valid values can be obtained.
- tehd
Config MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Tehd Config - The TSC transcoding parameters.Note: This field may return null, indicating that no valid values can be obtained.
- video
Template MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Video Template - Video stream configuration parameter.
- add_
on_ Sequence[Mpssubtitles Process Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle] - The subtitle file to add.Note: This field may return null, indicating that no valid values can be obtained.
- addon_
audio_ Sequence[Mpsstreams Process Media Operation Media Process Task Transcode Task Set Override Parameter Addon Audio Stream] - The information of the external audio track to add.Note: This field may return null, indicating that no valid values can be obtained.
- audio_
template MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Audio Template - Audio stream configuration parameter.
- container str
- Container format. Valid values: mp4, flv, hls, mp3, flac, ogg, and m4a; mp3, flac, ogg, and m4a are formats of audio files.
- remove_
audio float - Whether to remove audio data. Valid values:0: retain1: remove.
- remove_
video float - Whether to remove video data. Valid values:0: retain1: remove.
- std_
ext_ strinfo - An extended field for transcoding.Note: This field may return null, indicating that no valid values can be obtained.
- subtitle_
template MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Subtitle Template - The subtitle settings.Note: This field may return null, indicating that no valid values can be obtained.
- tehd_
config MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Tehd Config - The TSC transcoding parameters.Note: This field may return null, indicating that no valid values can be obtained.
- video_
template MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Video Template - Video stream configuration parameter.
- add
On List<Property Map>Subtitles - The subtitle file to add.Note: This field may return null, indicating that no valid values can be obtained.
- addon
Audio List<Property Map>Streams - The information of the external audio track to add.Note: This field may return null, indicating that no valid values can be obtained.
- audio
Template Property Map - Audio stream configuration parameter.
- container String
- Container format. Valid values: mp4, flv, hls, mp3, flac, ogg, and m4a; mp3, flac, ogg, and m4a are formats of audio files.
- remove
Audio Number - Whether to remove audio data. Valid values:0: retain1: remove.
- remove
Video Number - Whether to remove video data. Valid values:0: retain1: remove.
- std
Ext StringInfo - An extended field for transcoding.Note: This field may return null, indicating that no valid values can be obtained.
- subtitle
Template Property Map - The subtitle settings.Note: This field may return null, indicating that no valid values can be obtained.
- tehd
Config Property Map - The TSC transcoding parameters.Note: This field may return null, indicating that no valid values can be obtained.
- video
Template Property Map - Video stream configuration parameter.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterAddOnSubtitle, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterAddOnSubtitleArgs
- Subtitle
Mps
Process Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle Subtitle - The subtitle file.Note: This field may return null, indicating that no valid values can be obtained.
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks.
- Subtitle
Mps
Process Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle Subtitle - The subtitle file.Note: This field may return null, indicating that no valid values can be obtained.
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks.
- subtitle
Mps
Process Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle Subtitle - The subtitle file.Note: This field may return null, indicating that no valid values can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks.
- subtitle
Mps
Process Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle Subtitle - The subtitle file.Note: This field may return null, indicating that no valid values can be obtained.
- type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks.
- subtitle
Mps
Process Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle Subtitle - The subtitle file.Note: This field may return null, indicating that no valid values can be obtained.
- type str
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks.
- subtitle Property Map
- The subtitle file.Note: This field may return null, indicating that no valid values can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterAddOnSubtitleSubtitle, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterAddOnSubtitleSubtitleArgs
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - Cos
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle Subtitle Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - S3Input
Info MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle Subtitle S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - Url
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle Subtitle Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - Cos
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle Subtitle Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - S3Input
Info MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle Subtitle S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - Url
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle Subtitle Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle Subtitle Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle Subtitle S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle Subtitle Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle Subtitle Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle Subtitle S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle Subtitle Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type str
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos_
input_ Mpsinfo Process Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle Subtitle Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3_
input_ Mpsinfo Process Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle Subtitle S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url_
input_ Mpsinfo Process Media Operation Media Process Task Transcode Task Set Override Parameter Add On Subtitle Subtitle Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input Property MapInfo - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info Property Map - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input Property MapInfo - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterAddOnSubtitleSubtitleCosInputInfo, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterAddOnSubtitleSubtitleCosInputInfoArgs
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterAddOnSubtitleSubtitleS3InputInfo, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterAddOnSubtitleSubtitleS3InputInfoArgs
- S3Bucket string
- The AWS S3 bucket.
- S3Object string
- The path of the AWS S3 object.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to access the AWS S3 object.
- S3Secret
Key string - The key required to access the AWS S3 object.
- S3Bucket string
- The AWS S3 bucket.
- S3Object string
- The path of the AWS S3 object.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to access the AWS S3 object.
- S3Secret
Key string - The key required to access the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Object String
- The path of the AWS S3 object.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to access the AWS S3 object.
- s3Secret
Key String - The key required to access the AWS S3 object.
- s3Bucket string
- The AWS S3 bucket.
- s3Object string
- The path of the AWS S3 object.
- s3Region string
- The region of the AWS S3 bucket.
- s3Secret
Id string - The key ID required to access the AWS S3 object.
- s3Secret
Key string - The key required to access the AWS S3 object.
- s3_
bucket str - The AWS S3 bucket.
- s3_
object str - The path of the AWS S3 object.
- s3_
region str - The region of the AWS S3 bucket.
- s3_
secret_ strid - The key ID required to access the AWS S3 object.
- s3_
secret_ strkey - The key required to access the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Object String
- The path of the AWS S3 object.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to access the AWS S3 object.
- s3Secret
Key String - The key required to access the AWS S3 object.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterAddOnSubtitleSubtitleUrlInputInfo, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterAddOnSubtitleSubtitleUrlInputInfoArgs
- Url string
- URL of a video.
- Url string
- URL of a video.
- url String
- URL of a video.
- url string
- URL of a video.
- url str
- URL of a video.
- url String
- URL of a video.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterAddonAudioStream, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterAddonAudioStreamArgs
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - Cos
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Override Parameter Addon Audio Stream Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - S3Input
Info MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Addon Audio Stream S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - Url
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Override Parameter Addon Audio Stream Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - Cos
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Override Parameter Addon Audio Stream Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - S3Input
Info MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Addon Audio Stream S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - Url
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Override Parameter Addon Audio Stream Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Override Parameter Addon Audio Stream Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Addon Audio Stream S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Override Parameter Addon Audio Stream Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Override Parameter Addon Audio Stream Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info MpsProcess Media Operation Media Process Task Transcode Task Set Override Parameter Addon Audio Stream S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Override Parameter Addon Audio Stream Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type str
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos_
input_ Mpsinfo Process Media Operation Media Process Task Transcode Task Set Override Parameter Addon Audio Stream Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3_
input_ Mpsinfo Process Media Operation Media Process Task Transcode Task Set Override Parameter Addon Audio Stream S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url_
input_ Mpsinfo Process Media Operation Media Process Task Transcode Task Set Override Parameter Addon Audio Stream Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input Property MapInfo - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info Property Map - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input Property MapInfo - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterAddonAudioStreamCosInputInfo, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterAddonAudioStreamCosInputInfoArgs
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterAddonAudioStreamS3InputInfo, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterAddonAudioStreamS3InputInfoArgs
- S3Bucket string
- The AWS S3 bucket.
- S3Object string
- The path of the AWS S3 object.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to access the AWS S3 object.
- S3Secret
Key string - The key required to access the AWS S3 object.
- S3Bucket string
- The AWS S3 bucket.
- S3Object string
- The path of the AWS S3 object.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to access the AWS S3 object.
- S3Secret
Key string - The key required to access the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Object String
- The path of the AWS S3 object.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to access the AWS S3 object.
- s3Secret
Key String - The key required to access the AWS S3 object.
- s3Bucket string
- The AWS S3 bucket.
- s3Object string
- The path of the AWS S3 object.
- s3Region string
- The region of the AWS S3 bucket.
- s3Secret
Id string - The key ID required to access the AWS S3 object.
- s3Secret
Key string - The key required to access the AWS S3 object.
- s3_
bucket str - The AWS S3 bucket.
- s3_
object str - The path of the AWS S3 object.
- s3_
region str - The region of the AWS S3 bucket.
- s3_
secret_ strid - The key ID required to access the AWS S3 object.
- s3_
secret_ strkey - The key required to access the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Object String
- The path of the AWS S3 object.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to access the AWS S3 object.
- s3Secret
Key String - The key required to access the AWS S3 object.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterAddonAudioStreamUrlInputInfo, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterAddonAudioStreamUrlInputInfoArgs
- Url string
- URL of a video.
- Url string
- URL of a video.
- url String
- URL of a video.
- url string
- URL of a video.
- url str
- URL of a video.
- url String
- URL of a video.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterAudioTemplate, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterAudioTemplateArgs
- Audio
Channel double - Audio channel system. Valid values:1: Mono2: Dual6: StereoWhen the media is packaged in audio format (FLAC, OGG, MP3, M4A), the sound channel cannot be set to stereo.Default value: 2.
- Bitrate double
- Audio stream bitrate in Kbps. Value range: 0 and [26, 256].If the value is 0, the bitrate of the audio stream will be the same as that of the original audio.
- Codec string
- Audio stream codec.When the outer
Container
parameter ismp3
, the valid value is:libmp3lame.When the outerContainer
parameter isogg
orflac
, the valid value is:flac.When the outerContainer
parameter ism4a
, the valid values include:libfdk_aac;libmp3lame;ac3.When the outerContainer
parameter ismp4
orflv
, the valid values include:libfdk_aac: more suitable for mp4;libmp3lame: more suitable for flv.When the outerContainer
parameter ishls
, the valid values include:libfdk_aac;libmp3lame. - Sample
Rate double - Audio stream sample rate. Valid values:32,00044,10048,000In Hz.
- Stream
Selects List<double> - The audio tracks to retain. All audio tracks are retained by default.
- Audio
Channel float64 - Audio channel system. Valid values:1: Mono2: Dual6: StereoWhen the media is packaged in audio format (FLAC, OGG, MP3, M4A), the sound channel cannot be set to stereo.Default value: 2.
- Bitrate float64
- Audio stream bitrate in Kbps. Value range: 0 and [26, 256].If the value is 0, the bitrate of the audio stream will be the same as that of the original audio.
- Codec string
- Audio stream codec.When the outer
Container
parameter ismp3
, the valid value is:libmp3lame.When the outerContainer
parameter isogg
orflac
, the valid value is:flac.When the outerContainer
parameter ism4a
, the valid values include:libfdk_aac;libmp3lame;ac3.When the outerContainer
parameter ismp4
orflv
, the valid values include:libfdk_aac: more suitable for mp4;libmp3lame: more suitable for flv.When the outerContainer
parameter ishls
, the valid values include:libfdk_aac;libmp3lame. - Sample
Rate float64 - Audio stream sample rate. Valid values:32,00044,10048,000In Hz.
- Stream
Selects []float64 - The audio tracks to retain. All audio tracks are retained by default.
- audio
Channel Double - Audio channel system. Valid values:1: Mono2: Dual6: StereoWhen the media is packaged in audio format (FLAC, OGG, MP3, M4A), the sound channel cannot be set to stereo.Default value: 2.
- bitrate Double
- Audio stream bitrate in Kbps. Value range: 0 and [26, 256].If the value is 0, the bitrate of the audio stream will be the same as that of the original audio.
- codec String
- Audio stream codec.When the outer
Container
parameter ismp3
, the valid value is:libmp3lame.When the outerContainer
parameter isogg
orflac
, the valid value is:flac.When the outerContainer
parameter ism4a
, the valid values include:libfdk_aac;libmp3lame;ac3.When the outerContainer
parameter ismp4
orflv
, the valid values include:libfdk_aac: more suitable for mp4;libmp3lame: more suitable for flv.When the outerContainer
parameter ishls
, the valid values include:libfdk_aac;libmp3lame. - sample
Rate Double - Audio stream sample rate. Valid values:32,00044,10048,000In Hz.
- stream
Selects List<Double> - The audio tracks to retain. All audio tracks are retained by default.
- audio
Channel number - Audio channel system. Valid values:1: Mono2: Dual6: StereoWhen the media is packaged in audio format (FLAC, OGG, MP3, M4A), the sound channel cannot be set to stereo.Default value: 2.
- bitrate number
- Audio stream bitrate in Kbps. Value range: 0 and [26, 256].If the value is 0, the bitrate of the audio stream will be the same as that of the original audio.
- codec string
- Audio stream codec.When the outer
Container
parameter ismp3
, the valid value is:libmp3lame.When the outerContainer
parameter isogg
orflac
, the valid value is:flac.When the outerContainer
parameter ism4a
, the valid values include:libfdk_aac;libmp3lame;ac3.When the outerContainer
parameter ismp4
orflv
, the valid values include:libfdk_aac: more suitable for mp4;libmp3lame: more suitable for flv.When the outerContainer
parameter ishls
, the valid values include:libfdk_aac;libmp3lame. - sample
Rate number - Audio stream sample rate. Valid values:32,00044,10048,000In Hz.
- stream
Selects number[] - The audio tracks to retain. All audio tracks are retained by default.
- audio_
channel float - Audio channel system. Valid values:1: Mono2: Dual6: StereoWhen the media is packaged in audio format (FLAC, OGG, MP3, M4A), the sound channel cannot be set to stereo.Default value: 2.
- bitrate float
- Audio stream bitrate in Kbps. Value range: 0 and [26, 256].If the value is 0, the bitrate of the audio stream will be the same as that of the original audio.
- codec str
- Audio stream codec.When the outer
Container
parameter ismp3
, the valid value is:libmp3lame.When the outerContainer
parameter isogg
orflac
, the valid value is:flac.When the outerContainer
parameter ism4a
, the valid values include:libfdk_aac;libmp3lame;ac3.When the outerContainer
parameter ismp4
orflv
, the valid values include:libfdk_aac: more suitable for mp4;libmp3lame: more suitable for flv.When the outerContainer
parameter ishls
, the valid values include:libfdk_aac;libmp3lame. - sample_
rate float - Audio stream sample rate. Valid values:32,00044,10048,000In Hz.
- stream_
selects Sequence[float] - The audio tracks to retain. All audio tracks are retained by default.
- audio
Channel Number - Audio channel system. Valid values:1: Mono2: Dual6: StereoWhen the media is packaged in audio format (FLAC, OGG, MP3, M4A), the sound channel cannot be set to stereo.Default value: 2.
- bitrate Number
- Audio stream bitrate in Kbps. Value range: 0 and [26, 256].If the value is 0, the bitrate of the audio stream will be the same as that of the original audio.
- codec String
- Audio stream codec.When the outer
Container
parameter ismp3
, the valid value is:libmp3lame.When the outerContainer
parameter isogg
orflac
, the valid value is:flac.When the outerContainer
parameter ism4a
, the valid values include:libfdk_aac;libmp3lame;ac3.When the outerContainer
parameter ismp4
orflv
, the valid values include:libfdk_aac: more suitable for mp4;libmp3lame: more suitable for flv.When the outerContainer
parameter ishls
, the valid values include:libfdk_aac;libmp3lame. - sample
Rate Number - Audio stream sample rate. Valid values:32,00044,10048,000In Hz.
- stream
Selects List<Number> - The audio tracks to retain. All audio tracks are retained by default.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterSubtitleTemplate, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterSubtitleTemplateArgs
- Font
Alpha double - The text transparency. Value range: 0-1.
0
: Fully transparent.1
: Fully opaque.Default value: 1.Note: This field may return null, indicating that no valid values can be obtained. - Font
Color string - The font color in 0xRRGGBB format. Default value: 0xFFFFFF (white).Note: This field may return null, indicating that no valid values can be obtained.
- Font
Size string - The font size (pixels). If this is not specified, the font size in the subtitle file will be used.Note: This field may return null, indicating that no valid values can be obtained.
- Font
Type string - The font. Valid values:
hei.ttf
: Heiti.song.ttf
: Songti.simkai.ttf
: Kaiti.arial.ttf
: Arial.The default ishei.ttf
.Note: This field may return null, indicating that no valid values can be obtained. - Path string
- The URL of the subtitles to add to the video.Note: This field may return null, indicating that no valid values can be obtained.
- Stream
Index double - The subtitle track to add to the video. If both
Path
andStreamIndex
are specified,Path
will be used. You need to specify at least one of the two parameters.Note: This field may return null, indicating that no valid values can be obtained.
- Font
Alpha float64 - The text transparency. Value range: 0-1.
0
: Fully transparent.1
: Fully opaque.Default value: 1.Note: This field may return null, indicating that no valid values can be obtained. - Font
Color string - The font color in 0xRRGGBB format. Default value: 0xFFFFFF (white).Note: This field may return null, indicating that no valid values can be obtained.
- Font
Size string - The font size (pixels). If this is not specified, the font size in the subtitle file will be used.Note: This field may return null, indicating that no valid values can be obtained.
- Font
Type string - The font. Valid values:
hei.ttf
: Heiti.song.ttf
: Songti.simkai.ttf
: Kaiti.arial.ttf
: Arial.The default ishei.ttf
.Note: This field may return null, indicating that no valid values can be obtained. - Path string
- The URL of the subtitles to add to the video.Note: This field may return null, indicating that no valid values can be obtained.
- Stream
Index float64 - The subtitle track to add to the video. If both
Path
andStreamIndex
are specified,Path
will be used. You need to specify at least one of the two parameters.Note: This field may return null, indicating that no valid values can be obtained.
- font
Alpha Double - The text transparency. Value range: 0-1.
0
: Fully transparent.1
: Fully opaque.Default value: 1.Note: This field may return null, indicating that no valid values can be obtained. - font
Color String - The font color in 0xRRGGBB format. Default value: 0xFFFFFF (white).Note: This field may return null, indicating that no valid values can be obtained.
- font
Size String - The font size (pixels). If this is not specified, the font size in the subtitle file will be used.Note: This field may return null, indicating that no valid values can be obtained.
- font
Type String - The font. Valid values:
hei.ttf
: Heiti.song.ttf
: Songti.simkai.ttf
: Kaiti.arial.ttf
: Arial.The default ishei.ttf
.Note: This field may return null, indicating that no valid values can be obtained. - path String
- The URL of the subtitles to add to the video.Note: This field may return null, indicating that no valid values can be obtained.
- stream
Index Double - The subtitle track to add to the video. If both
Path
andStreamIndex
are specified,Path
will be used. You need to specify at least one of the two parameters.Note: This field may return null, indicating that no valid values can be obtained.
- font
Alpha number - The text transparency. Value range: 0-1.
0
: Fully transparent.1
: Fully opaque.Default value: 1.Note: This field may return null, indicating that no valid values can be obtained. - font
Color string - The font color in 0xRRGGBB format. Default value: 0xFFFFFF (white).Note: This field may return null, indicating that no valid values can be obtained.
- font
Size string - The font size (pixels). If this is not specified, the font size in the subtitle file will be used.Note: This field may return null, indicating that no valid values can be obtained.
- font
Type string - The font. Valid values:
hei.ttf
: Heiti.song.ttf
: Songti.simkai.ttf
: Kaiti.arial.ttf
: Arial.The default ishei.ttf
.Note: This field may return null, indicating that no valid values can be obtained. - path string
- The URL of the subtitles to add to the video.Note: This field may return null, indicating that no valid values can be obtained.
- stream
Index number - The subtitle track to add to the video. If both
Path
andStreamIndex
are specified,Path
will be used. You need to specify at least one of the two parameters.Note: This field may return null, indicating that no valid values can be obtained.
- font_
alpha float - The text transparency. Value range: 0-1.
0
: Fully transparent.1
: Fully opaque.Default value: 1.Note: This field may return null, indicating that no valid values can be obtained. - font_
color str - The font color in 0xRRGGBB format. Default value: 0xFFFFFF (white).Note: This field may return null, indicating that no valid values can be obtained.
- font_
size str - The font size (pixels). If this is not specified, the font size in the subtitle file will be used.Note: This field may return null, indicating that no valid values can be obtained.
- font_
type str - The font. Valid values:
hei.ttf
: Heiti.song.ttf
: Songti.simkai.ttf
: Kaiti.arial.ttf
: Arial.The default ishei.ttf
.Note: This field may return null, indicating that no valid values can be obtained. - path str
- The URL of the subtitles to add to the video.Note: This field may return null, indicating that no valid values can be obtained.
- stream_
index float - The subtitle track to add to the video. If both
Path
andStreamIndex
are specified,Path
will be used. You need to specify at least one of the two parameters.Note: This field may return null, indicating that no valid values can be obtained.
- font
Alpha Number - The text transparency. Value range: 0-1.
0
: Fully transparent.1
: Fully opaque.Default value: 1.Note: This field may return null, indicating that no valid values can be obtained. - font
Color String - The font color in 0xRRGGBB format. Default value: 0xFFFFFF (white).Note: This field may return null, indicating that no valid values can be obtained.
- font
Size String - The font size (pixels). If this is not specified, the font size in the subtitle file will be used.Note: This field may return null, indicating that no valid values can be obtained.
- font
Type String - The font. Valid values:
hei.ttf
: Heiti.song.ttf
: Songti.simkai.ttf
: Kaiti.arial.ttf
: Arial.The default ishei.ttf
.Note: This field may return null, indicating that no valid values can be obtained. - path String
- The URL of the subtitles to add to the video.Note: This field may return null, indicating that no valid values can be obtained.
- stream
Index Number - The subtitle track to add to the video. If both
Path
andStreamIndex
are specified,Path
will be used. You need to specify at least one of the two parameters.Note: This field may return null, indicating that no valid values can be obtained.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterTehdConfig, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterTehdConfigArgs
- Max
Video doubleBitrate - Maximum bitrate, which is valid when
Type
isTESHD
.If this parameter is left empty or 0 is entered, there will be no upper limit for bitrate. - Type string
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- Max
Video float64Bitrate - Maximum bitrate, which is valid when
Type
isTESHD
.If this parameter is left empty or 0 is entered, there will be no upper limit for bitrate. - Type string
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- max
Video DoubleBitrate - Maximum bitrate, which is valid when
Type
isTESHD
.If this parameter is left empty or 0 is entered, there will be no upper limit for bitrate. - type String
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- max
Video numberBitrate - Maximum bitrate, which is valid when
Type
isTESHD
.If this parameter is left empty or 0 is entered, there will be no upper limit for bitrate. - type string
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- max_
video_ floatbitrate - Maximum bitrate, which is valid when
Type
isTESHD
.If this parameter is left empty or 0 is entered, there will be no upper limit for bitrate. - type str
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- max
Video NumberBitrate - Maximum bitrate, which is valid when
Type
isTESHD
.If this parameter is left empty or 0 is entered, there will be no upper limit for bitrate. - type String
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterVideoTemplate, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetOverrideParameterVideoTemplateArgs
- Bitrate double
- The video bitrate (Kbps). Value range: 0 and [128, 35000].If the value is 0, the bitrate of the video will be the same as that of the source video.
- Codec string
- The video codec. Valid values:
libx264
: H.264libx265
: H.265av1
: AOMedia Video 1Note: You must specify a resolution (not higher than 640 x 480) if the H.265 codec is used.Note: You can only use the AOMedia Video 1 codec for MP4 files. - Content
Adapt doubleStream - Whether to enable adaptive encoding. Valid values:0: Disable1: EnableDefault value: 0. If this parameter is set to
1
, multiple streams with different resolutions and bitrates will be generated automatically. The highest resolution, bitrate, and quality of the streams are determined by the values ofwidth
andheight
,Bitrate
, andVcrf
inVideoTemplate
respectively. If these parameters are not set inVideoTemplate
, the highest resolution generated will be the same as that of the source video, and the highest video quality will be close to VMAF 95. To use this parameter or learn about the billing details of adaptive encoding, please contact your sales rep. - Fill
Type string - The fill mode, which indicates how a video is resized when the video's original aspect ratio is different from the target aspect ratio. Valid values:stretch: Stretch the image frame by frame to fill the entire screen. The video image may become squashed or stretched after transcoding.black: Keep the image's original aspect ratio and fill the blank space with black bars.white: Keep the image's original aspect ratio and fill the blank space with white bars.gauss: Keep the image's original aspect ratio and apply Gaussian blur to the blank space.Default value: black.Note: Only
stretch
andblack
are supported for adaptive bitrate streaming. - Fps double
- The video frame rate (Hz). Value range: [0, 100].If the value is 0, the frame rate will be the same as that of the source video.Note: For adaptive bitrate streaming, the value range of this parameter is [0, 60].
- Gop double
- Frame interval between I keyframes. Value range: 0 and [1,100000].If this parameter is 0 or left empty, the system will automatically set the GOP length.
- Height double
- Maximum value of the height (or short side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0. - Resolution
Adaptive string - Resolution adaption. Valid values:open: Enabled. When resolution adaption is enabled,
Width
indicates the long side of a video, whileHeight
indicates the short side.close: Disabled. When resolution adaption is disabled,Width
indicates the width of a video, whileHeight
indicates the height.Default value: open.Note: When resolution adaption is enabled,Width
cannot be smaller thanHeight
. - Vcrf double
- The control factor of video constant bitrate. Value range: [1, 51]If this parameter is specified, CRF (a bitrate control method) will be used for transcoding. (Video bitrate will no longer take effect.)It is not recommended to specify this parameter if there are no special requirements.
- Width double
- Maximum value of the width (or long side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0.
- Bitrate float64
- The video bitrate (Kbps). Value range: 0 and [128, 35000].If the value is 0, the bitrate of the video will be the same as that of the source video.
- Codec string
- The video codec. Valid values:
libx264
: H.264libx265
: H.265av1
: AOMedia Video 1Note: You must specify a resolution (not higher than 640 x 480) if the H.265 codec is used.Note: You can only use the AOMedia Video 1 codec for MP4 files. - Content
Adapt float64Stream - Whether to enable adaptive encoding. Valid values:0: Disable1: EnableDefault value: 0. If this parameter is set to
1
, multiple streams with different resolutions and bitrates will be generated automatically. The highest resolution, bitrate, and quality of the streams are determined by the values ofwidth
andheight
,Bitrate
, andVcrf
inVideoTemplate
respectively. If these parameters are not set inVideoTemplate
, the highest resolution generated will be the same as that of the source video, and the highest video quality will be close to VMAF 95. To use this parameter or learn about the billing details of adaptive encoding, please contact your sales rep. - Fill
Type string - The fill mode, which indicates how a video is resized when the video's original aspect ratio is different from the target aspect ratio. Valid values:stretch: Stretch the image frame by frame to fill the entire screen. The video image may become squashed or stretched after transcoding.black: Keep the image's original aspect ratio and fill the blank space with black bars.white: Keep the image's original aspect ratio and fill the blank space with white bars.gauss: Keep the image's original aspect ratio and apply Gaussian blur to the blank space.Default value: black.Note: Only
stretch
andblack
are supported for adaptive bitrate streaming. - Fps float64
- The video frame rate (Hz). Value range: [0, 100].If the value is 0, the frame rate will be the same as that of the source video.Note: For adaptive bitrate streaming, the value range of this parameter is [0, 60].
- Gop float64
- Frame interval between I keyframes. Value range: 0 and [1,100000].If this parameter is 0 or left empty, the system will automatically set the GOP length.
- Height float64
- Maximum value of the height (or short side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0. - Resolution
Adaptive string - Resolution adaption. Valid values:open: Enabled. When resolution adaption is enabled,
Width
indicates the long side of a video, whileHeight
indicates the short side.close: Disabled. When resolution adaption is disabled,Width
indicates the width of a video, whileHeight
indicates the height.Default value: open.Note: When resolution adaption is enabled,Width
cannot be smaller thanHeight
. - Vcrf float64
- The control factor of video constant bitrate. Value range: [1, 51]If this parameter is specified, CRF (a bitrate control method) will be used for transcoding. (Video bitrate will no longer take effect.)It is not recommended to specify this parameter if there are no special requirements.
- Width float64
- Maximum value of the width (or long side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0.
- bitrate Double
- The video bitrate (Kbps). Value range: 0 and [128, 35000].If the value is 0, the bitrate of the video will be the same as that of the source video.
- codec String
- The video codec. Valid values:
libx264
: H.264libx265
: H.265av1
: AOMedia Video 1Note: You must specify a resolution (not higher than 640 x 480) if the H.265 codec is used.Note: You can only use the AOMedia Video 1 codec for MP4 files. - content
Adapt DoubleStream - Whether to enable adaptive encoding. Valid values:0: Disable1: EnableDefault value: 0. If this parameter is set to
1
, multiple streams with different resolutions and bitrates will be generated automatically. The highest resolution, bitrate, and quality of the streams are determined by the values ofwidth
andheight
,Bitrate
, andVcrf
inVideoTemplate
respectively. If these parameters are not set inVideoTemplate
, the highest resolution generated will be the same as that of the source video, and the highest video quality will be close to VMAF 95. To use this parameter or learn about the billing details of adaptive encoding, please contact your sales rep. - fill
Type String - The fill mode, which indicates how a video is resized when the video's original aspect ratio is different from the target aspect ratio. Valid values:stretch: Stretch the image frame by frame to fill the entire screen. The video image may become squashed or stretched after transcoding.black: Keep the image's original aspect ratio and fill the blank space with black bars.white: Keep the image's original aspect ratio and fill the blank space with white bars.gauss: Keep the image's original aspect ratio and apply Gaussian blur to the blank space.Default value: black.Note: Only
stretch
andblack
are supported for adaptive bitrate streaming. - fps Double
- The video frame rate (Hz). Value range: [0, 100].If the value is 0, the frame rate will be the same as that of the source video.Note: For adaptive bitrate streaming, the value range of this parameter is [0, 60].
- gop Double
- Frame interval between I keyframes. Value range: 0 and [1,100000].If this parameter is 0 or left empty, the system will automatically set the GOP length.
- height Double
- Maximum value of the height (or short side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0. - resolution
Adaptive String - Resolution adaption. Valid values:open: Enabled. When resolution adaption is enabled,
Width
indicates the long side of a video, whileHeight
indicates the short side.close: Disabled. When resolution adaption is disabled,Width
indicates the width of a video, whileHeight
indicates the height.Default value: open.Note: When resolution adaption is enabled,Width
cannot be smaller thanHeight
. - vcrf Double
- The control factor of video constant bitrate. Value range: [1, 51]If this parameter is specified, CRF (a bitrate control method) will be used for transcoding. (Video bitrate will no longer take effect.)It is not recommended to specify this parameter if there are no special requirements.
- width Double
- Maximum value of the width (or long side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0.
- bitrate number
- The video bitrate (Kbps). Value range: 0 and [128, 35000].If the value is 0, the bitrate of the video will be the same as that of the source video.
- codec string
- The video codec. Valid values:
libx264
: H.264libx265
: H.265av1
: AOMedia Video 1Note: You must specify a resolution (not higher than 640 x 480) if the H.265 codec is used.Note: You can only use the AOMedia Video 1 codec for MP4 files. - content
Adapt numberStream - Whether to enable adaptive encoding. Valid values:0: Disable1: EnableDefault value: 0. If this parameter is set to
1
, multiple streams with different resolutions and bitrates will be generated automatically. The highest resolution, bitrate, and quality of the streams are determined by the values ofwidth
andheight
,Bitrate
, andVcrf
inVideoTemplate
respectively. If these parameters are not set inVideoTemplate
, the highest resolution generated will be the same as that of the source video, and the highest video quality will be close to VMAF 95. To use this parameter or learn about the billing details of adaptive encoding, please contact your sales rep. - fill
Type string - The fill mode, which indicates how a video is resized when the video's original aspect ratio is different from the target aspect ratio. Valid values:stretch: Stretch the image frame by frame to fill the entire screen. The video image may become squashed or stretched after transcoding.black: Keep the image's original aspect ratio and fill the blank space with black bars.white: Keep the image's original aspect ratio and fill the blank space with white bars.gauss: Keep the image's original aspect ratio and apply Gaussian blur to the blank space.Default value: black.Note: Only
stretch
andblack
are supported for adaptive bitrate streaming. - fps number
- The video frame rate (Hz). Value range: [0, 100].If the value is 0, the frame rate will be the same as that of the source video.Note: For adaptive bitrate streaming, the value range of this parameter is [0, 60].
- gop number
- Frame interval between I keyframes. Value range: 0 and [1,100000].If this parameter is 0 or left empty, the system will automatically set the GOP length.
- height number
- Maximum value of the height (or short side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0. - resolution
Adaptive string - Resolution adaption. Valid values:open: Enabled. When resolution adaption is enabled,
Width
indicates the long side of a video, whileHeight
indicates the short side.close: Disabled. When resolution adaption is disabled,Width
indicates the width of a video, whileHeight
indicates the height.Default value: open.Note: When resolution adaption is enabled,Width
cannot be smaller thanHeight
. - vcrf number
- The control factor of video constant bitrate. Value range: [1, 51]If this parameter is specified, CRF (a bitrate control method) will be used for transcoding. (Video bitrate will no longer take effect.)It is not recommended to specify this parameter if there are no special requirements.
- width number
- Maximum value of the width (or long side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0.
- bitrate float
- The video bitrate (Kbps). Value range: 0 and [128, 35000].If the value is 0, the bitrate of the video will be the same as that of the source video.
- codec str
- The video codec. Valid values:
libx264
: H.264libx265
: H.265av1
: AOMedia Video 1Note: You must specify a resolution (not higher than 640 x 480) if the H.265 codec is used.Note: You can only use the AOMedia Video 1 codec for MP4 files. - content_
adapt_ floatstream - Whether to enable adaptive encoding. Valid values:0: Disable1: EnableDefault value: 0. If this parameter is set to
1
, multiple streams with different resolutions and bitrates will be generated automatically. The highest resolution, bitrate, and quality of the streams are determined by the values ofwidth
andheight
,Bitrate
, andVcrf
inVideoTemplate
respectively. If these parameters are not set inVideoTemplate
, the highest resolution generated will be the same as that of the source video, and the highest video quality will be close to VMAF 95. To use this parameter or learn about the billing details of adaptive encoding, please contact your sales rep. - fill_
type str - The fill mode, which indicates how a video is resized when the video's original aspect ratio is different from the target aspect ratio. Valid values:stretch: Stretch the image frame by frame to fill the entire screen. The video image may become squashed or stretched after transcoding.black: Keep the image's original aspect ratio and fill the blank space with black bars.white: Keep the image's original aspect ratio and fill the blank space with white bars.gauss: Keep the image's original aspect ratio and apply Gaussian blur to the blank space.Default value: black.Note: Only
stretch
andblack
are supported for adaptive bitrate streaming. - fps float
- The video frame rate (Hz). Value range: [0, 100].If the value is 0, the frame rate will be the same as that of the source video.Note: For adaptive bitrate streaming, the value range of this parameter is [0, 60].
- gop float
- Frame interval between I keyframes. Value range: 0 and [1,100000].If this parameter is 0 or left empty, the system will automatically set the GOP length.
- height float
- Maximum value of the height (or short side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0. - resolution_
adaptive str - Resolution adaption. Valid values:open: Enabled. When resolution adaption is enabled,
Width
indicates the long side of a video, whileHeight
indicates the short side.close: Disabled. When resolution adaption is disabled,Width
indicates the width of a video, whileHeight
indicates the height.Default value: open.Note: When resolution adaption is enabled,Width
cannot be smaller thanHeight
. - vcrf float
- The control factor of video constant bitrate. Value range: [1, 51]If this parameter is specified, CRF (a bitrate control method) will be used for transcoding. (Video bitrate will no longer take effect.)It is not recommended to specify this parameter if there are no special requirements.
- width float
- Maximum value of the width (or long side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0.
- bitrate Number
- The video bitrate (Kbps). Value range: 0 and [128, 35000].If the value is 0, the bitrate of the video will be the same as that of the source video.
- codec String
- The video codec. Valid values:
libx264
: H.264libx265
: H.265av1
: AOMedia Video 1Note: You must specify a resolution (not higher than 640 x 480) if the H.265 codec is used.Note: You can only use the AOMedia Video 1 codec for MP4 files. - content
Adapt NumberStream - Whether to enable adaptive encoding. Valid values:0: Disable1: EnableDefault value: 0. If this parameter is set to
1
, multiple streams with different resolutions and bitrates will be generated automatically. The highest resolution, bitrate, and quality of the streams are determined by the values ofwidth
andheight
,Bitrate
, andVcrf
inVideoTemplate
respectively. If these parameters are not set inVideoTemplate
, the highest resolution generated will be the same as that of the source video, and the highest video quality will be close to VMAF 95. To use this parameter or learn about the billing details of adaptive encoding, please contact your sales rep. - fill
Type String - The fill mode, which indicates how a video is resized when the video's original aspect ratio is different from the target aspect ratio. Valid values:stretch: Stretch the image frame by frame to fill the entire screen. The video image may become squashed or stretched after transcoding.black: Keep the image's original aspect ratio and fill the blank space with black bars.white: Keep the image's original aspect ratio and fill the blank space with white bars.gauss: Keep the image's original aspect ratio and apply Gaussian blur to the blank space.Default value: black.Note: Only
stretch
andblack
are supported for adaptive bitrate streaming. - fps Number
- The video frame rate (Hz). Value range: [0, 100].If the value is 0, the frame rate will be the same as that of the source video.Note: For adaptive bitrate streaming, the value range of this parameter is [0, 60].
- gop Number
- Frame interval between I keyframes. Value range: 0 and [1,100000].If this parameter is 0 or left empty, the system will automatically set the GOP length.
- height Number
- Maximum value of the height (or short side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0. - resolution
Adaptive String - Resolution adaption. Valid values:open: Enabled. When resolution adaption is enabled,
Width
indicates the long side of a video, whileHeight
indicates the short side.close: Disabled. When resolution adaption is disabled,Width
indicates the width of a video, whileHeight
indicates the height.Default value: open.Note: When resolution adaption is enabled,Width
cannot be smaller thanHeight
. - vcrf Number
- The control factor of video constant bitrate. Value range: [1, 51]If this parameter is specified, CRF (a bitrate control method) will be used for transcoding. (Video bitrate will no longer take effect.)It is not recommended to specify this parameter if there are no special requirements.
- width Number
- Maximum value of the width (or long side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetRawParameter, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetRawParameterArgs
- Container string
- Container. Valid values: mp4; flv; hls; mp3; flac; ogg; m4a. Among them, mp3, flac, ogg, and m4a are for audio files.
- Audio
Template MpsProcess Media Operation Media Process Task Transcode Task Set Raw Parameter Audio Template - Audio stream configuration parameter. This field is required when
RemoveAudio
is 0. - Remove
Audio double - Whether to remove audio data. Valid values:0: retain;1: remove.Default value: 0.
- Remove
Video double - Whether to remove video data. Valid values:0: retain;1: remove.Default value: 0.
- Tehd
Config MpsProcess Media Operation Media Process Task Transcode Task Set Raw Parameter Tehd Config - TESHD transcoding parameter.
- Video
Template MpsProcess Media Operation Media Process Task Transcode Task Set Raw Parameter Video Template - Video stream configuration parameter. This field is required when
RemoveVideo
is 0.
- Container string
- Container. Valid values: mp4; flv; hls; mp3; flac; ogg; m4a. Among them, mp3, flac, ogg, and m4a are for audio files.
- Audio
Template MpsProcess Media Operation Media Process Task Transcode Task Set Raw Parameter Audio Template - Audio stream configuration parameter. This field is required when
RemoveAudio
is 0. - Remove
Audio float64 - Whether to remove audio data. Valid values:0: retain;1: remove.Default value: 0.
- Remove
Video float64 - Whether to remove video data. Valid values:0: retain;1: remove.Default value: 0.
- Tehd
Config MpsProcess Media Operation Media Process Task Transcode Task Set Raw Parameter Tehd Config - TESHD transcoding parameter.
- Video
Template MpsProcess Media Operation Media Process Task Transcode Task Set Raw Parameter Video Template - Video stream configuration parameter. This field is required when
RemoveVideo
is 0.
- container String
- Container. Valid values: mp4; flv; hls; mp3; flac; ogg; m4a. Among them, mp3, flac, ogg, and m4a are for audio files.
- audio
Template MpsProcess Media Operation Media Process Task Transcode Task Set Raw Parameter Audio Template - Audio stream configuration parameter. This field is required when
RemoveAudio
is 0. - remove
Audio Double - Whether to remove audio data. Valid values:0: retain;1: remove.Default value: 0.
- remove
Video Double - Whether to remove video data. Valid values:0: retain;1: remove.Default value: 0.
- tehd
Config MpsProcess Media Operation Media Process Task Transcode Task Set Raw Parameter Tehd Config - TESHD transcoding parameter.
- video
Template MpsProcess Media Operation Media Process Task Transcode Task Set Raw Parameter Video Template - Video stream configuration parameter. This field is required when
RemoveVideo
is 0.
- container string
- Container. Valid values: mp4; flv; hls; mp3; flac; ogg; m4a. Among them, mp3, flac, ogg, and m4a are for audio files.
- audio
Template MpsProcess Media Operation Media Process Task Transcode Task Set Raw Parameter Audio Template - Audio stream configuration parameter. This field is required when
RemoveAudio
is 0. - remove
Audio number - Whether to remove audio data. Valid values:0: retain;1: remove.Default value: 0.
- remove
Video number - Whether to remove video data. Valid values:0: retain;1: remove.Default value: 0.
- tehd
Config MpsProcess Media Operation Media Process Task Transcode Task Set Raw Parameter Tehd Config - TESHD transcoding parameter.
- video
Template MpsProcess Media Operation Media Process Task Transcode Task Set Raw Parameter Video Template - Video stream configuration parameter. This field is required when
RemoveVideo
is 0.
- container str
- Container. Valid values: mp4; flv; hls; mp3; flac; ogg; m4a. Among them, mp3, flac, ogg, and m4a are for audio files.
- audio_
template MpsProcess Media Operation Media Process Task Transcode Task Set Raw Parameter Audio Template - Audio stream configuration parameter. This field is required when
RemoveAudio
is 0. - remove_
audio float - Whether to remove audio data. Valid values:0: retain;1: remove.Default value: 0.
- remove_
video float - Whether to remove video data. Valid values:0: retain;1: remove.Default value: 0.
- tehd_
config MpsProcess Media Operation Media Process Task Transcode Task Set Raw Parameter Tehd Config - TESHD transcoding parameter.
- video_
template MpsProcess Media Operation Media Process Task Transcode Task Set Raw Parameter Video Template - Video stream configuration parameter. This field is required when
RemoveVideo
is 0.
- container String
- Container. Valid values: mp4; flv; hls; mp3; flac; ogg; m4a. Among them, mp3, flac, ogg, and m4a are for audio files.
- audio
Template Property Map - Audio stream configuration parameter. This field is required when
RemoveAudio
is 0. - remove
Audio Number - Whether to remove audio data. Valid values:0: retain;1: remove.Default value: 0.
- remove
Video Number - Whether to remove video data. Valid values:0: retain;1: remove.Default value: 0.
- tehd
Config Property Map - TESHD transcoding parameter.
- video
Template Property Map - Video stream configuration parameter. This field is required when
RemoveVideo
is 0.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetRawParameterAudioTemplate, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetRawParameterAudioTemplateArgs
- Bitrate double
- Audio stream bitrate in Kbps. Value range: 0 and [26, 256].If the value is 0, the bitrate of the audio stream will be the same as that of the original audio.
- Codec string
- Audio stream codec.When the outer
Container
parameter ismp3
, the valid value is:libmp3lame.When the outerContainer
parameter isogg
orflac
, the valid value is:flac.When the outerContainer
parameter ism4a
, the valid values include:libfdk_aac;libmp3lame;ac3.When the outerContainer
parameter ismp4
orflv
, the valid values include:libfdk_aac: more suitable for mp4;libmp3lame: more suitable for flv.When the outerContainer
parameter ishls
, the valid values include:libfdk_aac;libmp3lame. - Sample
Rate double - Audio stream sample rate. Valid values:32,00044,10048,000In Hz.
- Audio
Channel double - Audio channel system. Valid values:1: Mono2: Dual6: StereoWhen the media is packaged in audio format (FLAC, OGG, MP3, M4A), the sound channel cannot be set to stereo.Default value: 2.
- Bitrate float64
- Audio stream bitrate in Kbps. Value range: 0 and [26, 256].If the value is 0, the bitrate of the audio stream will be the same as that of the original audio.
- Codec string
- Audio stream codec.When the outer
Container
parameter ismp3
, the valid value is:libmp3lame.When the outerContainer
parameter isogg
orflac
, the valid value is:flac.When the outerContainer
parameter ism4a
, the valid values include:libfdk_aac;libmp3lame;ac3.When the outerContainer
parameter ismp4
orflv
, the valid values include:libfdk_aac: more suitable for mp4;libmp3lame: more suitable for flv.When the outerContainer
parameter ishls
, the valid values include:libfdk_aac;libmp3lame. - Sample
Rate float64 - Audio stream sample rate. Valid values:32,00044,10048,000In Hz.
- Audio
Channel float64 - Audio channel system. Valid values:1: Mono2: Dual6: StereoWhen the media is packaged in audio format (FLAC, OGG, MP3, M4A), the sound channel cannot be set to stereo.Default value: 2.
- bitrate Double
- Audio stream bitrate in Kbps. Value range: 0 and [26, 256].If the value is 0, the bitrate of the audio stream will be the same as that of the original audio.
- codec String
- Audio stream codec.When the outer
Container
parameter ismp3
, the valid value is:libmp3lame.When the outerContainer
parameter isogg
orflac
, the valid value is:flac.When the outerContainer
parameter ism4a
, the valid values include:libfdk_aac;libmp3lame;ac3.When the outerContainer
parameter ismp4
orflv
, the valid values include:libfdk_aac: more suitable for mp4;libmp3lame: more suitable for flv.When the outerContainer
parameter ishls
, the valid values include:libfdk_aac;libmp3lame. - sample
Rate Double - Audio stream sample rate. Valid values:32,00044,10048,000In Hz.
- audio
Channel Double - Audio channel system. Valid values:1: Mono2: Dual6: StereoWhen the media is packaged in audio format (FLAC, OGG, MP3, M4A), the sound channel cannot be set to stereo.Default value: 2.
- bitrate number
- Audio stream bitrate in Kbps. Value range: 0 and [26, 256].If the value is 0, the bitrate of the audio stream will be the same as that of the original audio.
- codec string
- Audio stream codec.When the outer
Container
parameter ismp3
, the valid value is:libmp3lame.When the outerContainer
parameter isogg
orflac
, the valid value is:flac.When the outerContainer
parameter ism4a
, the valid values include:libfdk_aac;libmp3lame;ac3.When the outerContainer
parameter ismp4
orflv
, the valid values include:libfdk_aac: more suitable for mp4;libmp3lame: more suitable for flv.When the outerContainer
parameter ishls
, the valid values include:libfdk_aac;libmp3lame. - sample
Rate number - Audio stream sample rate. Valid values:32,00044,10048,000In Hz.
- audio
Channel number - Audio channel system. Valid values:1: Mono2: Dual6: StereoWhen the media is packaged in audio format (FLAC, OGG, MP3, M4A), the sound channel cannot be set to stereo.Default value: 2.
- bitrate float
- Audio stream bitrate in Kbps. Value range: 0 and [26, 256].If the value is 0, the bitrate of the audio stream will be the same as that of the original audio.
- codec str
- Audio stream codec.When the outer
Container
parameter ismp3
, the valid value is:libmp3lame.When the outerContainer
parameter isogg
orflac
, the valid value is:flac.When the outerContainer
parameter ism4a
, the valid values include:libfdk_aac;libmp3lame;ac3.When the outerContainer
parameter ismp4
orflv
, the valid values include:libfdk_aac: more suitable for mp4;libmp3lame: more suitable for flv.When the outerContainer
parameter ishls
, the valid values include:libfdk_aac;libmp3lame. - sample_
rate float - Audio stream sample rate. Valid values:32,00044,10048,000In Hz.
- audio_
channel float - Audio channel system. Valid values:1: Mono2: Dual6: StereoWhen the media is packaged in audio format (FLAC, OGG, MP3, M4A), the sound channel cannot be set to stereo.Default value: 2.
- bitrate Number
- Audio stream bitrate in Kbps. Value range: 0 and [26, 256].If the value is 0, the bitrate of the audio stream will be the same as that of the original audio.
- codec String
- Audio stream codec.When the outer
Container
parameter ismp3
, the valid value is:libmp3lame.When the outerContainer
parameter isogg
orflac
, the valid value is:flac.When the outerContainer
parameter ism4a
, the valid values include:libfdk_aac;libmp3lame;ac3.When the outerContainer
parameter ismp4
orflv
, the valid values include:libfdk_aac: more suitable for mp4;libmp3lame: more suitable for flv.When the outerContainer
parameter ishls
, the valid values include:libfdk_aac;libmp3lame. - sample
Rate Number - Audio stream sample rate. Valid values:32,00044,10048,000In Hz.
- audio
Channel Number - Audio channel system. Valid values:1: Mono2: Dual6: StereoWhen the media is packaged in audio format (FLAC, OGG, MP3, M4A), the sound channel cannot be set to stereo.Default value: 2.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetRawParameterTehdConfig, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetRawParameterTehdConfigArgs
- Type string
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- Max
Video doubleBitrate - Maximum bitrate, which is valid when
Type
isTESHD
.If this parameter is left empty or 0 is entered, there will be no upper limit for bitrate.
- Type string
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- Max
Video float64Bitrate - Maximum bitrate, which is valid when
Type
isTESHD
.If this parameter is left empty or 0 is entered, there will be no upper limit for bitrate.
- type String
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- max
Video DoubleBitrate - Maximum bitrate, which is valid when
Type
isTESHD
.If this parameter is left empty or 0 is entered, there will be no upper limit for bitrate.
- type string
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- max
Video numberBitrate - Maximum bitrate, which is valid when
Type
isTESHD
.If this parameter is left empty or 0 is entered, there will be no upper limit for bitrate.
- type str
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- max_
video_ floatbitrate - Maximum bitrate, which is valid when
Type
isTESHD
.If this parameter is left empty or 0 is entered, there will be no upper limit for bitrate.
- type String
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- max
Video NumberBitrate - Maximum bitrate, which is valid when
Type
isTESHD
.If this parameter is left empty or 0 is entered, there will be no upper limit for bitrate.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetRawParameterVideoTemplate, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetRawParameterVideoTemplateArgs
- Bitrate double
- The video bitrate (Kbps). Value range: 0 and [128, 35000].If the value is 0, the bitrate of the video will be the same as that of the source video.
- Codec string
- The video codec. Valid values:
libx264
: H.264libx265
: H.265av1
: AOMedia Video 1Note: You must specify a resolution (not higher than 640 x 480) if the H.265 codec is used.Note: You can only use the AOMedia Video 1 codec for MP4 files. - Fps double
- The video frame rate (Hz). Value range: [0, 100].If the value is 0, the frame rate will be the same as that of the source video.Note: For adaptive bitrate streaming, the value range of this parameter is [0, 60].
- Fill
Type string - The fill mode, which indicates how a video is resized when the video's original aspect ratio is different from the target aspect ratio. Valid values:stretch: Stretch the image frame by frame to fill the entire screen. The video image may become squashed or stretched after transcoding.black: Keep the image's original aspect ratio and fill the blank space with black bars.white: Keep the image's original aspect ratio and fill the blank space with white bars.gauss: Keep the image's original aspect ratio and apply Gaussian blur to the blank space.Default value: black.Note: Only
stretch
andblack
are supported for adaptive bitrate streaming. - Gop double
- Frame interval between I keyframes. Value range: 0 and [1,100000].If this parameter is 0 or left empty, the system will automatically set the GOP length.
- Height double
- Maximum value of the height (or short side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0. - Resolution
Adaptive string - Resolution adaption. Valid values:open: Enabled. When resolution adaption is enabled,
Width
indicates the long side of a video, whileHeight
indicates the short side.close: Disabled. When resolution adaption is disabled,Width
indicates the width of a video, whileHeight
indicates the height.Default value: open.Note: When resolution adaption is enabled,Width
cannot be smaller thanHeight
. - Vcrf double
- The control factor of video constant bitrate. Value range: [1, 51]If this parameter is specified, CRF (a bitrate control method) will be used for transcoding. (Video bitrate will no longer take effect.)It is not recommended to specify this parameter if there are no special requirements.
- Width double
- Maximum value of the width (or long side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0.
- Bitrate float64
- The video bitrate (Kbps). Value range: 0 and [128, 35000].If the value is 0, the bitrate of the video will be the same as that of the source video.
- Codec string
- The video codec. Valid values:
libx264
: H.264libx265
: H.265av1
: AOMedia Video 1Note: You must specify a resolution (not higher than 640 x 480) if the H.265 codec is used.Note: You can only use the AOMedia Video 1 codec for MP4 files. - Fps float64
- The video frame rate (Hz). Value range: [0, 100].If the value is 0, the frame rate will be the same as that of the source video.Note: For adaptive bitrate streaming, the value range of this parameter is [0, 60].
- Fill
Type string - The fill mode, which indicates how a video is resized when the video's original aspect ratio is different from the target aspect ratio. Valid values:stretch: Stretch the image frame by frame to fill the entire screen. The video image may become squashed or stretched after transcoding.black: Keep the image's original aspect ratio and fill the blank space with black bars.white: Keep the image's original aspect ratio and fill the blank space with white bars.gauss: Keep the image's original aspect ratio and apply Gaussian blur to the blank space.Default value: black.Note: Only
stretch
andblack
are supported for adaptive bitrate streaming. - Gop float64
- Frame interval between I keyframes. Value range: 0 and [1,100000].If this parameter is 0 or left empty, the system will automatically set the GOP length.
- Height float64
- Maximum value of the height (or short side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0. - Resolution
Adaptive string - Resolution adaption. Valid values:open: Enabled. When resolution adaption is enabled,
Width
indicates the long side of a video, whileHeight
indicates the short side.close: Disabled. When resolution adaption is disabled,Width
indicates the width of a video, whileHeight
indicates the height.Default value: open.Note: When resolution adaption is enabled,Width
cannot be smaller thanHeight
. - Vcrf float64
- The control factor of video constant bitrate. Value range: [1, 51]If this parameter is specified, CRF (a bitrate control method) will be used for transcoding. (Video bitrate will no longer take effect.)It is not recommended to specify this parameter if there are no special requirements.
- Width float64
- Maximum value of the width (or long side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0.
- bitrate Double
- The video bitrate (Kbps). Value range: 0 and [128, 35000].If the value is 0, the bitrate of the video will be the same as that of the source video.
- codec String
- The video codec. Valid values:
libx264
: H.264libx265
: H.265av1
: AOMedia Video 1Note: You must specify a resolution (not higher than 640 x 480) if the H.265 codec is used.Note: You can only use the AOMedia Video 1 codec for MP4 files. - fps Double
- The video frame rate (Hz). Value range: [0, 100].If the value is 0, the frame rate will be the same as that of the source video.Note: For adaptive bitrate streaming, the value range of this parameter is [0, 60].
- fill
Type String - The fill mode, which indicates how a video is resized when the video's original aspect ratio is different from the target aspect ratio. Valid values:stretch: Stretch the image frame by frame to fill the entire screen. The video image may become squashed or stretched after transcoding.black: Keep the image's original aspect ratio and fill the blank space with black bars.white: Keep the image's original aspect ratio and fill the blank space with white bars.gauss: Keep the image's original aspect ratio and apply Gaussian blur to the blank space.Default value: black.Note: Only
stretch
andblack
are supported for adaptive bitrate streaming. - gop Double
- Frame interval between I keyframes. Value range: 0 and [1,100000].If this parameter is 0 or left empty, the system will automatically set the GOP length.
- height Double
- Maximum value of the height (or short side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0. - resolution
Adaptive String - Resolution adaption. Valid values:open: Enabled. When resolution adaption is enabled,
Width
indicates the long side of a video, whileHeight
indicates the short side.close: Disabled. When resolution adaption is disabled,Width
indicates the width of a video, whileHeight
indicates the height.Default value: open.Note: When resolution adaption is enabled,Width
cannot be smaller thanHeight
. - vcrf Double
- The control factor of video constant bitrate. Value range: [1, 51]If this parameter is specified, CRF (a bitrate control method) will be used for transcoding. (Video bitrate will no longer take effect.)It is not recommended to specify this parameter if there are no special requirements.
- width Double
- Maximum value of the width (or long side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0.
- bitrate number
- The video bitrate (Kbps). Value range: 0 and [128, 35000].If the value is 0, the bitrate of the video will be the same as that of the source video.
- codec string
- The video codec. Valid values:
libx264
: H.264libx265
: H.265av1
: AOMedia Video 1Note: You must specify a resolution (not higher than 640 x 480) if the H.265 codec is used.Note: You can only use the AOMedia Video 1 codec for MP4 files. - fps number
- The video frame rate (Hz). Value range: [0, 100].If the value is 0, the frame rate will be the same as that of the source video.Note: For adaptive bitrate streaming, the value range of this parameter is [0, 60].
- fill
Type string - The fill mode, which indicates how a video is resized when the video's original aspect ratio is different from the target aspect ratio. Valid values:stretch: Stretch the image frame by frame to fill the entire screen. The video image may become squashed or stretched after transcoding.black: Keep the image's original aspect ratio and fill the blank space with black bars.white: Keep the image's original aspect ratio and fill the blank space with white bars.gauss: Keep the image's original aspect ratio and apply Gaussian blur to the blank space.Default value: black.Note: Only
stretch
andblack
are supported for adaptive bitrate streaming. - gop number
- Frame interval between I keyframes. Value range: 0 and [1,100000].If this parameter is 0 or left empty, the system will automatically set the GOP length.
- height number
- Maximum value of the height (or short side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0. - resolution
Adaptive string - Resolution adaption. Valid values:open: Enabled. When resolution adaption is enabled,
Width
indicates the long side of a video, whileHeight
indicates the short side.close: Disabled. When resolution adaption is disabled,Width
indicates the width of a video, whileHeight
indicates the height.Default value: open.Note: When resolution adaption is enabled,Width
cannot be smaller thanHeight
. - vcrf number
- The control factor of video constant bitrate. Value range: [1, 51]If this parameter is specified, CRF (a bitrate control method) will be used for transcoding. (Video bitrate will no longer take effect.)It is not recommended to specify this parameter if there are no special requirements.
- width number
- Maximum value of the width (or long side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0.
- bitrate float
- The video bitrate (Kbps). Value range: 0 and [128, 35000].If the value is 0, the bitrate of the video will be the same as that of the source video.
- codec str
- The video codec. Valid values:
libx264
: H.264libx265
: H.265av1
: AOMedia Video 1Note: You must specify a resolution (not higher than 640 x 480) if the H.265 codec is used.Note: You can only use the AOMedia Video 1 codec for MP4 files. - fps float
- The video frame rate (Hz). Value range: [0, 100].If the value is 0, the frame rate will be the same as that of the source video.Note: For adaptive bitrate streaming, the value range of this parameter is [0, 60].
- fill_
type str - The fill mode, which indicates how a video is resized when the video's original aspect ratio is different from the target aspect ratio. Valid values:stretch: Stretch the image frame by frame to fill the entire screen. The video image may become squashed or stretched after transcoding.black: Keep the image's original aspect ratio and fill the blank space with black bars.white: Keep the image's original aspect ratio and fill the blank space with white bars.gauss: Keep the image's original aspect ratio and apply Gaussian blur to the blank space.Default value: black.Note: Only
stretch
andblack
are supported for adaptive bitrate streaming. - gop float
- Frame interval between I keyframes. Value range: 0 and [1,100000].If this parameter is 0 or left empty, the system will automatically set the GOP length.
- height float
- Maximum value of the height (or short side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0. - resolution_
adaptive str - Resolution adaption. Valid values:open: Enabled. When resolution adaption is enabled,
Width
indicates the long side of a video, whileHeight
indicates the short side.close: Disabled. When resolution adaption is disabled,Width
indicates the width of a video, whileHeight
indicates the height.Default value: open.Note: When resolution adaption is enabled,Width
cannot be smaller thanHeight
. - vcrf float
- The control factor of video constant bitrate. Value range: [1, 51]If this parameter is specified, CRF (a bitrate control method) will be used for transcoding. (Video bitrate will no longer take effect.)It is not recommended to specify this parameter if there are no special requirements.
- width float
- Maximum value of the width (or long side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0.
- bitrate Number
- The video bitrate (Kbps). Value range: 0 and [128, 35000].If the value is 0, the bitrate of the video will be the same as that of the source video.
- codec String
- The video codec. Valid values:
libx264
: H.264libx265
: H.265av1
: AOMedia Video 1Note: You must specify a resolution (not higher than 640 x 480) if the H.265 codec is used.Note: You can only use the AOMedia Video 1 codec for MP4 files. - fps Number
- The video frame rate (Hz). Value range: [0, 100].If the value is 0, the frame rate will be the same as that of the source video.Note: For adaptive bitrate streaming, the value range of this parameter is [0, 60].
- fill
Type String - The fill mode, which indicates how a video is resized when the video's original aspect ratio is different from the target aspect ratio. Valid values:stretch: Stretch the image frame by frame to fill the entire screen. The video image may become squashed or stretched after transcoding.black: Keep the image's original aspect ratio and fill the blank space with black bars.white: Keep the image's original aspect ratio and fill the blank space with white bars.gauss: Keep the image's original aspect ratio and apply Gaussian blur to the blank space.Default value: black.Note: Only
stretch
andblack
are supported for adaptive bitrate streaming. - gop Number
- Frame interval between I keyframes. Value range: 0 and [1,100000].If this parameter is 0 or left empty, the system will automatically set the GOP length.
- height Number
- Maximum value of the height (or short side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0. - resolution
Adaptive String - Resolution adaption. Valid values:open: Enabled. When resolution adaption is enabled,
Width
indicates the long side of a video, whileHeight
indicates the short side.close: Disabled. When resolution adaption is disabled,Width
indicates the width of a video, whileHeight
indicates the height.Default value: open.Note: When resolution adaption is enabled,Width
cannot be smaller thanHeight
. - vcrf Number
- The control factor of video constant bitrate. Value range: [1, 51]If this parameter is specified, CRF (a bitrate control method) will be used for transcoding. (Video bitrate will no longer take effect.)It is not recommended to specify this parameter if there are no special requirements.
- width Number
- Maximum value of the width (or long side) of a video stream in px. Value range: 0 and [128, 4,096].If both
Width
andHeight
are 0, the resolution will be the same as that of the source video;IfWidth
is 0, butHeight
is not 0,Width
will be proportionally scaled;IfWidth
is not 0, butHeight
is 0,Height
will be proportionally scaled;If bothWidth
andHeight
are not 0, the custom resolution will be used.Default value: 0.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetWatermarkSet, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetWatermarkSetArgs
- Definition double
- ID of a watermarking template.
- End
Time doubleOffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- Raw
Parameter MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - Start
Time doubleOffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- Svg
Content string - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - Text
Content string - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
- Definition float64
- ID of a watermarking template.
- End
Time float64Offset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- Raw
Parameter MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - Start
Time float64Offset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- Svg
Content string - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - Text
Content string - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
- definition Double
- ID of a watermarking template.
- end
Time DoubleOffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- raw
Parameter MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - start
Time DoubleOffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- svg
Content String - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - text
Content String - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
- definition number
- ID of a watermarking template.
- end
Time numberOffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- raw
Parameter MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - start
Time numberOffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- svg
Content string - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - text
Content string - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
- definition float
- ID of a watermarking template.
- end_
time_ floatoffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- raw_
parameter MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - start_
time_ floatoffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- svg_
content str - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - text_
content str - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
- definition Number
- ID of a watermarking template.
- end
Time NumberOffset - End time offset of a watermark in seconds.If this parameter is left empty or 0 is entered, the watermark will exist till the last video frame;If this value is greater than 0 (e.g., n), the watermark will exist till second n;If this value is smaller than 0 (e.g., -n), the watermark will exist till second n before the last video frame.
- raw
Parameter Property Map - Custom watermark parameter, which is valid if
Definition
is 0.This parameter is used in highly customized scenarios. We recommend you useDefinition
to specify the watermark parameter preferably.Custom watermark parameter is not available for screenshot. - start
Time NumberOffset - Start time offset of a watermark in seconds. If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame.If this parameter is left empty or 0 is entered, the watermark will appear upon the first video frame;If this value is greater than 0 (e.g., n), the watermark will appear at second n after the first video frame;If this value is smaller than 0 (e.g., -n), the watermark will appear at second n before the last video frame.
- svg
Content String - SVG content of up to 2,000,000 characters. This field is required only when the watermark type is
SVG
.SVG watermark is not available for screenshot. - text
Content String - Text content of up to 100 characters. This field is required only when the watermark type is text.Text watermark is not available for screenshot.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetWatermarkSetRawParameter, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetWatermarkSetRawParameterArgs
- Type string
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- Coordinate
Origin string - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- Image
Template MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - XPos string
- The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - YPos string
- The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- Type string
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- Coordinate
Origin string - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- Image
Template MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - XPos string
- The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - YPos string
- The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- type String
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- coordinate
Origin String - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- image
Template MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - x
Pos String - The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - y
Pos String - The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- type string
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- coordinate
Origin string - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- image
Template MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - x
Pos string - The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - y
Pos string - The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- type str
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- coordinate_
origin str - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- image_
template MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - x_
pos str - The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - y_
pos str - The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
- type String
- TESHD type. Valid values:TEHD-100: TESHD-100.If this parameter is left empty, TESHD will not be enabled.
- coordinate
Origin String - Origin position, which currently can only be:TopLeft: the origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text.Default value: TopLeft.
- image
Template Property Map - Image watermark template. This field is required when
Type
isimage
and is invalid whenType
istext
. - x
Pos String - The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
XPos
of the watermark will be the specified percentage of the video width; for example,10%
means thatXPos
is 10% of the video width;If the string ends in px, theXPos
of the watermark will be the specified px; for example,100px
means thatXPos
is 100 px.Default value: 0 px. - y
Pos String - The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:If the string ends in %, the
YPos
of the watermark will be the specified percentage of the video height; for example,10%
means thatYPos
is 10% of the video height;If the string ends in px, theYPos
of the watermark will be the specified px; for example,100px
means thatYPos
is 100 px.Default value: 0 px.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetWatermarkSetRawParameterImageTemplate, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetWatermarkSetRawParameterImageTemplateArgs
- Image
Content MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template Image Content - Input content of watermark image. JPEG and PNG images are supported.
- Height string
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - Repeat
Type string - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - Width string
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
- Image
Content MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template Image Content - Input content of watermark image. JPEG and PNG images are supported.
- Height string
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - Repeat
Type string - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - Width string
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
- image
Content MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template Image Content - Input content of watermark image. JPEG and PNG images are supported.
- height String
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - repeat
Type String - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - width String
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
- image
Content MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template Image Content - Input content of watermark image. JPEG and PNG images are supported.
- height string
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - repeat
Type string - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - width string
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
- image_
content MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template Image Content - Input content of watermark image. JPEG and PNG images are supported.
- height str
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - repeat_
type str - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - width str
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
- image
Content Property Map - Input content of watermark image. JPEG and PNG images are supported.
- height String
- Watermark height. % and px formats are supported:If the string ends in %, the
Height
of the watermark will be the specified percentage of the video height; for example,10%
means thatHeight
is 10% of the video height;If the string ends in px, theHeight
of the watermark will be in px; for example,100px
means thatHeight
is 100 px.Default value: 0 px, which means thatHeight
will be proportionally scaled according to the aspect ratio of the original watermark image. - repeat
Type String - Repeat type of an animated watermark. Valid values:
once
: no longer appears after watermark playback ends.repeat_last_frame
: stays on the last frame after watermark playback ends.repeat
(default): repeats the playback until the video ends. - width String
- Watermark width. % and px formats are supported:If the string ends in %, the
Width
of the watermark will be the specified percentage of the video width; for example,10%
means thatWidth
is 10% of the video width;If the string ends in px, theWidth
of the watermark will be in px; for example,100px
means thatWidth
is 100 px.Default value: 10%.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetWatermarkSetRawParameterImageTemplateImageContent, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetWatermarkSetRawParameterImageTemplateImageContentArgs
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - Cos
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template Image Content Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - S3Input
Info MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template Image Content S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - Url
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template Image Content Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- Type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - Cos
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template Image Content Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - S3Input
Info MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template Image Content S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - Url
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template Image Content Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template Image Content Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template Image Content S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template Image Content Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type string
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template Image Content Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info MpsProcess Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template Image Content S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input MpsInfo Process Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template Image Content Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type str
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos_
input_ Mpsinfo Process Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template Image Content Cos Input Info - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3_
input_ Mpsinfo Process Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template Image Content S3Input Info - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url_
input_ Mpsinfo Process Media Operation Media Process Task Transcode Task Set Watermark Set Raw Parameter Image Template Image Content Url Input Info - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The input type. Valid values:
COS
: A COS bucket address.URL
: A URL.AWS-S3
: An AWS S3 bucket address. Currently, this type is only supported for transcoding tasks. - cos
Input Property MapInfo - The information of the COS object to process. This parameter is valid and required when
Type
isCOS
. - s3Input
Info Property Map - The information of the AWS S3 object processed. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained. - url
Input Property MapInfo - The URL of the object to process. This parameter is valid and required when
Type
isURL
.Note: This field may return null, indicating that no valid value can be obtained.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetWatermarkSetRawParameterImageTemplateImageContentCosInputInfo, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetWatermarkSetRawParameterImageTemplateImageContentCosInputInfoArgs
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetWatermarkSetRawParameterImageTemplateImageContentS3InputInfo, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetWatermarkSetRawParameterImageTemplateImageContentS3InputInfoArgs
- S3Bucket string
- The AWS S3 bucket.
- S3Object string
- The path of the AWS S3 object.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to access the AWS S3 object.
- S3Secret
Key string - The key required to access the AWS S3 object.
- S3Bucket string
- The AWS S3 bucket.
- S3Object string
- The path of the AWS S3 object.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to access the AWS S3 object.
- S3Secret
Key string - The key required to access the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Object String
- The path of the AWS S3 object.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to access the AWS S3 object.
- s3Secret
Key String - The key required to access the AWS S3 object.
- s3Bucket string
- The AWS S3 bucket.
- s3Object string
- The path of the AWS S3 object.
- s3Region string
- The region of the AWS S3 bucket.
- s3Secret
Id string - The key ID required to access the AWS S3 object.
- s3Secret
Key string - The key required to access the AWS S3 object.
- s3_
bucket str - The AWS S3 bucket.
- s3_
object str - The path of the AWS S3 object.
- s3_
region str - The region of the AWS S3 bucket.
- s3_
secret_ strid - The key ID required to access the AWS S3 object.
- s3_
secret_ strkey - The key required to access the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Object String
- The path of the AWS S3 object.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to access the AWS S3 object.
- s3Secret
Key String - The key required to access the AWS S3 object.
MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetWatermarkSetRawParameterImageTemplateImageContentUrlInputInfo, MpsProcessMediaOperationMediaProcessTaskTranscodeTaskSetWatermarkSetRawParameterImageTemplateImageContentUrlInputInfoArgs
- Url string
- URL of a video.
- Url string
- URL of a video.
- url String
- URL of a video.
- url string
- URL of a video.
- url str
- URL of a video.
- url String
- URL of a video.
MpsProcessMediaOperationOutputStorage, MpsProcessMediaOperationOutputStorageArgs
- Type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - Cos
Output MpsStorage Process Media Operation Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - S3Output
Storage MpsProcess Media Operation Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- Type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - Cos
Output MpsStorage Process Media Operation Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - S3Output
Storage MpsProcess Media Operation Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos
Output MpsStorage Process Media Operation Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3Output
Storage MpsProcess Media Operation Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos
Output MpsStorage Process Media Operation Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3Output
Storage MpsProcess Media Operation Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type str
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos_
output_ Mpsstorage Process Media Operation Output Storage Cos Output Storage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3_
output_ Mpsstorage Process Media Operation Output Storage S3Output Storage - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
- type String
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COS>AWS-S3
: AWS S3. This type is only supported for AWS tasks, and the output bucket must be in the same region as the bucket of the source file. - cos
Output Property MapStorage - The location to save the output object in COS. This parameter is valid and required when
Type
is COS.Note: This field may return null, indicating that no valid value can be obtained. - s3Output
Storage Property Map - The AWS S3 bucket to save the output file. This parameter is required if
Type
isAWS-S3
.Note: This field may return null, indicating that no valid value can be obtained.
MpsProcessMediaOperationOutputStorageCosOutputStorage, MpsProcessMediaOperationOutputStorageCosOutputStorageArgs
- Bucket string
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - Region string
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- Bucket string
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - Region string
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket String
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region String
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket string
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region string
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket str
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region str
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
- bucket String
- The bucket to which the output file of media processing is saved, such as
TopRankVideo-125xxx88
. If this parameter is left empty, the value of the upper layer will be inherited. - region String
- The region of the output bucket, such as
ap-chongqing
. If this parameter is left empty, the value of the upper layer will be inherited.
MpsProcessMediaOperationOutputStorageS3OutputStorage, MpsProcessMediaOperationOutputStorageS3OutputStorageArgs
- S3Bucket string
- The AWS S3 bucket.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to upload files to the AWS S3 object.
- S3Secret
Key string - The key required to upload files to the AWS S3 object.
- S3Bucket string
- The AWS S3 bucket.
- S3Region string
- The region of the AWS S3 bucket.
- S3Secret
Id string - The key ID required to upload files to the AWS S3 object.
- S3Secret
Key string - The key required to upload files to the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to upload files to the AWS S3 object.
- s3Secret
Key String - The key required to upload files to the AWS S3 object.
- s3Bucket string
- The AWS S3 bucket.
- s3Region string
- The region of the AWS S3 bucket.
- s3Secret
Id string - The key ID required to upload files to the AWS S3 object.
- s3Secret
Key string - The key required to upload files to the AWS S3 object.
- s3_
bucket str - The AWS S3 bucket.
- s3_
region str - The region of the AWS S3 bucket.
- s3_
secret_ strid - The key ID required to upload files to the AWS S3 object.
- s3_
secret_ strkey - The key required to upload files to the AWS S3 object.
- s3Bucket String
- The AWS S3 bucket.
- s3Region String
- The region of the AWS S3 bucket.
- s3Secret
Id String - The key ID required to upload files to the AWS S3 object.
- s3Secret
Key String - The key required to upload files to the AWS S3 object.
MpsProcessMediaOperationTaskNotifyConfig, MpsProcessMediaOperationTaskNotifyConfigArgs
- Aws
Sqa MpsProcess Media Operation Task Notify Config Aws Sqa - The AWS SQS queue. This parameter is required if
NotifyType
isAWS-SQS
.Note: This field may return null, indicating that no valid values can be obtained. - Cmq
Model string - The CMQ or TDMQ-CMQ model. Valid values: Queue, Topic.
- Cmq
Region string - The CMQ or TDMQ-CMQ region, such as
sh
(Shanghai) orbj
(Beijing). - Notify
Mode string - Workflow notification method. Valid values: Finish, Change. If this parameter is left empty,
Finish
will be used. - Notify
Type string - The notification type. Valid values:
CMQ
: This value is no longer used. Please useTDMQ-CMQ
instead.TDMQ-CMQ
: Message queueURL
: IfNotifyType
is set toURL
, HTTP callbacks are sent to the URL specified byNotifyUrl
. HTTP and JSON are used for the callbacks. The packet contains the response parameters of theParseNotification
API.SCF
: This notification type is not recommended. You need to configure it in the SCF console.AWS-SQS
: AWS queue. This type is only supported for AWS tasks, and the queue must be in the same region as the AWS bucket.<font color=red>Note: If you do not pass this parameter or pass in an empty string,CMQ
will be used. To use a different notification type, specify this parameter accordingly.</font>. - Notify
Url string - HTTP callback URL, required if
NotifyType
is set toURL
. - Queue
Name string - The CMQ or TDMQ-CMQ queue to receive notifications. This parameter is valid when
CmqModel
isQueue
. - Topic
Name string - The CMQ or TDMQ-CMQ topic to receive notifications. This parameter is valid when
CmqModel
isTopic
.
- Aws
Sqa MpsProcess Media Operation Task Notify Config Aws Sqa - The AWS SQS queue. This parameter is required if
NotifyType
isAWS-SQS
.Note: This field may return null, indicating that no valid values can be obtained. - Cmq
Model string - The CMQ or TDMQ-CMQ model. Valid values: Queue, Topic.
- Cmq
Region string - The CMQ or TDMQ-CMQ region, such as
sh
(Shanghai) orbj
(Beijing). - Notify
Mode string - Workflow notification method. Valid values: Finish, Change. If this parameter is left empty,
Finish
will be used. - Notify
Type string - The notification type. Valid values:
CMQ
: This value is no longer used. Please useTDMQ-CMQ
instead.TDMQ-CMQ
: Message queueURL
: IfNotifyType
is set toURL
, HTTP callbacks are sent to the URL specified byNotifyUrl
. HTTP and JSON are used for the callbacks. The packet contains the response parameters of theParseNotification
API.SCF
: This notification type is not recommended. You need to configure it in the SCF console.AWS-SQS
: AWS queue. This type is only supported for AWS tasks, and the queue must be in the same region as the AWS bucket.<font color=red>Note: If you do not pass this parameter or pass in an empty string,CMQ
will be used. To use a different notification type, specify this parameter accordingly.</font>. - Notify
Url string - HTTP callback URL, required if
NotifyType
is set toURL
. - Queue
Name string - The CMQ or TDMQ-CMQ queue to receive notifications. This parameter is valid when
CmqModel
isQueue
. - Topic
Name string - The CMQ or TDMQ-CMQ topic to receive notifications. This parameter is valid when
CmqModel
isTopic
.
- aws
Sqa MpsProcess Media Operation Task Notify Config Aws Sqa - The AWS SQS queue. This parameter is required if
NotifyType
isAWS-SQS
.Note: This field may return null, indicating that no valid values can be obtained. - cmq
Model String - The CMQ or TDMQ-CMQ model. Valid values: Queue, Topic.
- cmq
Region String - The CMQ or TDMQ-CMQ region, such as
sh
(Shanghai) orbj
(Beijing). - notify
Mode String - Workflow notification method. Valid values: Finish, Change. If this parameter is left empty,
Finish
will be used. - notify
Type String - The notification type. Valid values:
CMQ
: This value is no longer used. Please useTDMQ-CMQ
instead.TDMQ-CMQ
: Message queueURL
: IfNotifyType
is set toURL
, HTTP callbacks are sent to the URL specified byNotifyUrl
. HTTP and JSON are used for the callbacks. The packet contains the response parameters of theParseNotification
API.SCF
: This notification type is not recommended. You need to configure it in the SCF console.AWS-SQS
: AWS queue. This type is only supported for AWS tasks, and the queue must be in the same region as the AWS bucket.<font color=red>Note: If you do not pass this parameter or pass in an empty string,CMQ
will be used. To use a different notification type, specify this parameter accordingly.</font>. - notify
Url String - HTTP callback URL, required if
NotifyType
is set toURL
. - queue
Name String - The CMQ or TDMQ-CMQ queue to receive notifications. This parameter is valid when
CmqModel
isQueue
. - topic
Name String - The CMQ or TDMQ-CMQ topic to receive notifications. This parameter is valid when
CmqModel
isTopic
.
- aws
Sqa MpsProcess Media Operation Task Notify Config Aws Sqa - The AWS SQS queue. This parameter is required if
NotifyType
isAWS-SQS
.Note: This field may return null, indicating that no valid values can be obtained. - cmq
Model string - The CMQ or TDMQ-CMQ model. Valid values: Queue, Topic.
- cmq
Region string - The CMQ or TDMQ-CMQ region, such as
sh
(Shanghai) orbj
(Beijing). - notify
Mode string - Workflow notification method. Valid values: Finish, Change. If this parameter is left empty,
Finish
will be used. - notify
Type string - The notification type. Valid values:
CMQ
: This value is no longer used. Please useTDMQ-CMQ
instead.TDMQ-CMQ
: Message queueURL
: IfNotifyType
is set toURL
, HTTP callbacks are sent to the URL specified byNotifyUrl
. HTTP and JSON are used for the callbacks. The packet contains the response parameters of theParseNotification
API.SCF
: This notification type is not recommended. You need to configure it in the SCF console.AWS-SQS
: AWS queue. This type is only supported for AWS tasks, and the queue must be in the same region as the AWS bucket.<font color=red>Note: If you do not pass this parameter or pass in an empty string,CMQ
will be used. To use a different notification type, specify this parameter accordingly.</font>. - notify
Url string - HTTP callback URL, required if
NotifyType
is set toURL
. - queue
Name string - The CMQ or TDMQ-CMQ queue to receive notifications. This parameter is valid when
CmqModel
isQueue
. - topic
Name string - The CMQ or TDMQ-CMQ topic to receive notifications. This parameter is valid when
CmqModel
isTopic
.
- aws_
sqa MpsProcess Media Operation Task Notify Config Aws Sqa - The AWS SQS queue. This parameter is required if
NotifyType
isAWS-SQS
.Note: This field may return null, indicating that no valid values can be obtained. - cmq_
model str - The CMQ or TDMQ-CMQ model. Valid values: Queue, Topic.
- cmq_
region str - The CMQ or TDMQ-CMQ region, such as
sh
(Shanghai) orbj
(Beijing). - notify_
mode str - Workflow notification method. Valid values: Finish, Change. If this parameter is left empty,
Finish
will be used. - notify_
type str - The notification type. Valid values:
CMQ
: This value is no longer used. Please useTDMQ-CMQ
instead.TDMQ-CMQ
: Message queueURL
: IfNotifyType
is set toURL
, HTTP callbacks are sent to the URL specified byNotifyUrl
. HTTP and JSON are used for the callbacks. The packet contains the response parameters of theParseNotification
API.SCF
: This notification type is not recommended. You need to configure it in the SCF console.AWS-SQS
: AWS queue. This type is only supported for AWS tasks, and the queue must be in the same region as the AWS bucket.<font color=red>Note: If you do not pass this parameter or pass in an empty string,CMQ
will be used. To use a different notification type, specify this parameter accordingly.</font>. - notify_
url str - HTTP callback URL, required if
NotifyType
is set toURL
. - queue_
name str - The CMQ or TDMQ-CMQ queue to receive notifications. This parameter is valid when
CmqModel
isQueue
. - topic_
name str - The CMQ or TDMQ-CMQ topic to receive notifications. This parameter is valid when
CmqModel
isTopic
.
- aws
Sqa Property Map - The AWS SQS queue. This parameter is required if
NotifyType
isAWS-SQS
.Note: This field may return null, indicating that no valid values can be obtained. - cmq
Model String - The CMQ or TDMQ-CMQ model. Valid values: Queue, Topic.
- cmq
Region String - The CMQ or TDMQ-CMQ region, such as
sh
(Shanghai) orbj
(Beijing). - notify
Mode String - Workflow notification method. Valid values: Finish, Change. If this parameter is left empty,
Finish
will be used. - notify
Type String - The notification type. Valid values:
CMQ
: This value is no longer used. Please useTDMQ-CMQ
instead.TDMQ-CMQ
: Message queueURL
: IfNotifyType
is set toURL
, HTTP callbacks are sent to the URL specified byNotifyUrl
. HTTP and JSON are used for the callbacks. The packet contains the response parameters of theParseNotification
API.SCF
: This notification type is not recommended. You need to configure it in the SCF console.AWS-SQS
: AWS queue. This type is only supported for AWS tasks, and the queue must be in the same region as the AWS bucket.<font color=red>Note: If you do not pass this parameter or pass in an empty string,CMQ
will be used. To use a different notification type, specify this parameter accordingly.</font>. - notify
Url String - HTTP callback URL, required if
NotifyType
is set toURL
. - queue
Name String - The CMQ or TDMQ-CMQ queue to receive notifications. This parameter is valid when
CmqModel
isQueue
. - topic
Name String - The CMQ or TDMQ-CMQ topic to receive notifications. This parameter is valid when
CmqModel
isTopic
.
MpsProcessMediaOperationTaskNotifyConfigAwsSqa, MpsProcessMediaOperationTaskNotifyConfigAwsSqaArgs
- Sqa
Queue stringName - The name of the SQS queue.
- Sqa
Region string - The region of the SQS queue.
- S3Secret
Id string - The key ID required to read from/write to the SQS queue.
- S3Secret
Key string - The key required to read from/write to the SQS queue.
- Sqa
Queue stringName - The name of the SQS queue.
- Sqa
Region string - The region of the SQS queue.
- S3Secret
Id string - The key ID required to read from/write to the SQS queue.
- S3Secret
Key string - The key required to read from/write to the SQS queue.
- sqa
Queue StringName - The name of the SQS queue.
- sqa
Region String - The region of the SQS queue.
- s3Secret
Id String - The key ID required to read from/write to the SQS queue.
- s3Secret
Key String - The key required to read from/write to the SQS queue.
- sqa
Queue stringName - The name of the SQS queue.
- sqa
Region string - The region of the SQS queue.
- s3Secret
Id string - The key ID required to read from/write to the SQS queue.
- s3Secret
Key string - The key required to read from/write to the SQS queue.
- sqa_
queue_ strname - The name of the SQS queue.
- sqa_
region str - The region of the SQS queue.
- s3_
secret_ strid - The key ID required to read from/write to the SQS queue.
- s3_
secret_ strkey - The key required to read from/write to the SQS queue.
- sqa
Queue StringName - The name of the SQS queue.
- sqa
Region String - The region of the SQS queue.
- s3Secret
Id String - The key ID required to read from/write to the SQS queue.
- s3Secret
Key String - The key required to read from/write to the SQS queue.
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloud
Terraform Provider.