tencentcloud.MpsSchedule
Explore with Pulumi AI
Provides a resource to create a mps schedule
Example Usage
Create a schedule through COS bucket
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const object = tencentcloud.getCosBucketObject({
bucket: `keep-bucket-${local.app_id}`,
key: "/mps-test/test.mov",
});
const output = new tencentcloud.CosBucket("output", {
bucket: `tf-bucket-mps-schedule-output-${local.app_id}`,
forceClean: true,
acl: "public-read",
});
const schedule = new tencentcloud.MpsSchedule("schedule", {
scheduleName: "tf_test_mps_schedule_%d",
trigger: {
type: "CosFileUpload",
cosFileUploadTrigger: {
bucket: object.then(object => object.bucket),
region: "%s",
dir: "/upload/",
formats: [
"flv",
"mov",
],
},
},
activities: [
{
activityType: "input",
reardriveIndices: [
1,
2,
],
},
{
activityType: "action-trans",
reardriveIndices: [3],
activityPara: {
transcodeTask: {
definition: 10,
},
},
},
{
activityType: "action-trans",
reardriveIndices: [
6,
7,
],
activityPara: {
transcodeTask: {
definition: 10,
},
},
},
{
activityType: "action-trans",
reardriveIndices: [
4,
5,
],
activityPara: {
transcodeTask: {
definition: 10,
},
},
},
{
activityType: "action-trans",
reardriveIndices: [10],
activityPara: {
transcodeTask: {
definition: 10,
},
},
},
{
activityType: "action-trans",
reardriveIndices: [10],
activityPara: {
transcodeTask: {
definition: 10,
},
},
},
{
activityType: "action-trans",
reardriveIndices: [10],
activityPara: {
transcodeTask: {
definition: 10,
},
},
},
{
activityType: "action-trans",
reardriveIndices: [8],
activityPara: {
transcodeTask: {
definition: 10,
},
},
},
{
activityType: "action-trans",
reardriveIndices: [9],
activityPara: {
transcodeTask: {
definition: 10,
},
},
},
{
activityType: "action-trans",
reardriveIndices: [10],
activityPara: {
transcodeTask: {
definition: 10,
},
},
},
{
activityType: "output",
},
],
outputStorage: {
type: "COS",
cosOutputStorage: {
bucket: output.bucket,
region: "%s",
},
},
outputDir: "output/",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
object = tencentcloud.get_cos_bucket_object(bucket=f"keep-bucket-{local['app_id']}",
key="/mps-test/test.mov")
output = tencentcloud.CosBucket("output",
bucket=f"tf-bucket-mps-schedule-output-{local['app_id']}",
force_clean=True,
acl="public-read")
schedule = tencentcloud.MpsSchedule("schedule",
schedule_name="tf_test_mps_schedule_%d",
trigger={
"type": "CosFileUpload",
"cos_file_upload_trigger": {
"bucket": object.bucket,
"region": "%s",
"dir": "/upload/",
"formats": [
"flv",
"mov",
],
},
},
activities=[
{
"activity_type": "input",
"reardrive_indices": [
1,
2,
],
},
{
"activity_type": "action-trans",
"reardrive_indices": [3],
"activity_para": {
"transcode_task": {
"definition": 10,
},
},
},
{
"activity_type": "action-trans",
"reardrive_indices": [
6,
7,
],
"activity_para": {
"transcode_task": {
"definition": 10,
},
},
},
{
"activity_type": "action-trans",
"reardrive_indices": [
4,
5,
],
"activity_para": {
"transcode_task": {
"definition": 10,
},
},
},
{
"activity_type": "action-trans",
"reardrive_indices": [10],
"activity_para": {
"transcode_task": {
"definition": 10,
},
},
},
{
"activity_type": "action-trans",
"reardrive_indices": [10],
"activity_para": {
"transcode_task": {
"definition": 10,
},
},
},
{
"activity_type": "action-trans",
"reardrive_indices": [10],
"activity_para": {
"transcode_task": {
"definition": 10,
},
},
},
{
"activity_type": "action-trans",
"reardrive_indices": [8],
"activity_para": {
"transcode_task": {
"definition": 10,
},
},
},
{
"activity_type": "action-trans",
"reardrive_indices": [9],
"activity_para": {
"transcode_task": {
"definition": 10,
},
},
},
{
"activity_type": "action-trans",
"reardrive_indices": [10],
"activity_para": {
"transcode_task": {
"definition": 10,
},
},
},
{
"activity_type": "output",
},
],
output_storage={
"type": "COS",
"cos_output_storage": {
"bucket": output.bucket,
"region": "%s",
},
},
output_dir="output/")
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 {
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
}
output, err := tencentcloud.NewCosBucket(ctx, "output", &tencentcloud.CosBucketArgs{
Bucket: pulumi.Sprintf("tf-bucket-mps-schedule-output-%v", local.App_id),
ForceClean: pulumi.Bool(true),
Acl: pulumi.String("public-read"),
})
if err != nil {
return err
}
_, err = tencentcloud.NewMpsSchedule(ctx, "schedule", &tencentcloud.MpsScheduleArgs{
ScheduleName: pulumi.String("tf_test_mps_schedule_%d"),
Trigger: &tencentcloud.MpsScheduleTriggerArgs{
Type: pulumi.String("CosFileUpload"),
CosFileUploadTrigger: &tencentcloud.MpsScheduleTriggerCosFileUploadTriggerArgs{
Bucket: pulumi.String(object.Bucket),
Region: pulumi.String("%s"),
Dir: pulumi.String("/upload/"),
Formats: pulumi.StringArray{
pulumi.String("flv"),
pulumi.String("mov"),
},
},
},
Activities: tencentcloud.MpsScheduleActivityArray{
&tencentcloud.MpsScheduleActivityArgs{
ActivityType: pulumi.String("input"),
ReardriveIndices: pulumi.Float64Array{
pulumi.Float64(1),
pulumi.Float64(2),
},
},
&tencentcloud.MpsScheduleActivityArgs{
ActivityType: pulumi.String("action-trans"),
ReardriveIndices: pulumi.Float64Array{
pulumi.Float64(3),
},
ActivityPara: &tencentcloud.MpsScheduleActivityActivityParaArgs{
TranscodeTask: &tencentcloud.MpsScheduleActivityActivityParaTranscodeTaskArgs{
Definition: pulumi.Float64(10),
},
},
},
&tencentcloud.MpsScheduleActivityArgs{
ActivityType: pulumi.String("action-trans"),
ReardriveIndices: pulumi.Float64Array{
pulumi.Float64(6),
pulumi.Float64(7),
},
ActivityPara: &tencentcloud.MpsScheduleActivityActivityParaArgs{
TranscodeTask: &tencentcloud.MpsScheduleActivityActivityParaTranscodeTaskArgs{
Definition: pulumi.Float64(10),
},
},
},
&tencentcloud.MpsScheduleActivityArgs{
ActivityType: pulumi.String("action-trans"),
ReardriveIndices: pulumi.Float64Array{
pulumi.Float64(4),
pulumi.Float64(5),
},
ActivityPara: &tencentcloud.MpsScheduleActivityActivityParaArgs{
TranscodeTask: &tencentcloud.MpsScheduleActivityActivityParaTranscodeTaskArgs{
Definition: pulumi.Float64(10),
},
},
},
&tencentcloud.MpsScheduleActivityArgs{
ActivityType: pulumi.String("action-trans"),
ReardriveIndices: pulumi.Float64Array{
pulumi.Float64(10),
},
ActivityPara: &tencentcloud.MpsScheduleActivityActivityParaArgs{
TranscodeTask: &tencentcloud.MpsScheduleActivityActivityParaTranscodeTaskArgs{
Definition: pulumi.Float64(10),
},
},
},
&tencentcloud.MpsScheduleActivityArgs{
ActivityType: pulumi.String("action-trans"),
ReardriveIndices: pulumi.Float64Array{
pulumi.Float64(10),
},
ActivityPara: &tencentcloud.MpsScheduleActivityActivityParaArgs{
TranscodeTask: &tencentcloud.MpsScheduleActivityActivityParaTranscodeTaskArgs{
Definition: pulumi.Float64(10),
},
},
},
&tencentcloud.MpsScheduleActivityArgs{
ActivityType: pulumi.String("action-trans"),
ReardriveIndices: pulumi.Float64Array{
pulumi.Float64(10),
},
ActivityPara: &tencentcloud.MpsScheduleActivityActivityParaArgs{
TranscodeTask: &tencentcloud.MpsScheduleActivityActivityParaTranscodeTaskArgs{
Definition: pulumi.Float64(10),
},
},
},
&tencentcloud.MpsScheduleActivityArgs{
ActivityType: pulumi.String("action-trans"),
ReardriveIndices: pulumi.Float64Array{
pulumi.Float64(8),
},
ActivityPara: &tencentcloud.MpsScheduleActivityActivityParaArgs{
TranscodeTask: &tencentcloud.MpsScheduleActivityActivityParaTranscodeTaskArgs{
Definition: pulumi.Float64(10),
},
},
},
&tencentcloud.MpsScheduleActivityArgs{
ActivityType: pulumi.String("action-trans"),
ReardriveIndices: pulumi.Float64Array{
pulumi.Float64(9),
},
ActivityPara: &tencentcloud.MpsScheduleActivityActivityParaArgs{
TranscodeTask: &tencentcloud.MpsScheduleActivityActivityParaTranscodeTaskArgs{
Definition: pulumi.Float64(10),
},
},
},
&tencentcloud.MpsScheduleActivityArgs{
ActivityType: pulumi.String("action-trans"),
ReardriveIndices: pulumi.Float64Array{
pulumi.Float64(10),
},
ActivityPara: &tencentcloud.MpsScheduleActivityActivityParaArgs{
TranscodeTask: &tencentcloud.MpsScheduleActivityActivityParaTranscodeTaskArgs{
Definition: pulumi.Float64(10),
},
},
},
&tencentcloud.MpsScheduleActivityArgs{
ActivityType: pulumi.String("output"),
},
},
OutputStorage: &tencentcloud.MpsScheduleOutputStorageArgs{
Type: pulumi.String("COS"),
CosOutputStorage: &tencentcloud.MpsScheduleOutputStorageCosOutputStorageArgs{
Bucket: output.Bucket,
Region: pulumi.String("%s"),
},
},
OutputDir: pulumi.String("output/"),
})
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 @object = Tencentcloud.GetCosBucketObject.Invoke(new()
{
Bucket = $"keep-bucket-{local.App_id}",
Key = "/mps-test/test.mov",
});
var output = new Tencentcloud.CosBucket("output", new()
{
Bucket = $"tf-bucket-mps-schedule-output-{local.App_id}",
ForceClean = true,
Acl = "public-read",
});
var schedule = new Tencentcloud.MpsSchedule("schedule", new()
{
ScheduleName = "tf_test_mps_schedule_%d",
Trigger = new Tencentcloud.Inputs.MpsScheduleTriggerArgs
{
Type = "CosFileUpload",
CosFileUploadTrigger = new Tencentcloud.Inputs.MpsScheduleTriggerCosFileUploadTriggerArgs
{
Bucket = @object.Apply(@object => @object.Apply(getCosBucketObjectResult => getCosBucketObjectResult.Bucket)),
Region = "%s",
Dir = "/upload/",
Formats = new[]
{
"flv",
"mov",
},
},
},
Activities = new[]
{
new Tencentcloud.Inputs.MpsScheduleActivityArgs
{
ActivityType = "input",
ReardriveIndices = new[]
{
1,
2,
},
},
new Tencentcloud.Inputs.MpsScheduleActivityArgs
{
ActivityType = "action-trans",
ReardriveIndices = new[]
{
3,
},
ActivityPara = new Tencentcloud.Inputs.MpsScheduleActivityActivityParaArgs
{
TranscodeTask = new Tencentcloud.Inputs.MpsScheduleActivityActivityParaTranscodeTaskArgs
{
Definition = 10,
},
},
},
new Tencentcloud.Inputs.MpsScheduleActivityArgs
{
ActivityType = "action-trans",
ReardriveIndices = new[]
{
6,
7,
},
ActivityPara = new Tencentcloud.Inputs.MpsScheduleActivityActivityParaArgs
{
TranscodeTask = new Tencentcloud.Inputs.MpsScheduleActivityActivityParaTranscodeTaskArgs
{
Definition = 10,
},
},
},
new Tencentcloud.Inputs.MpsScheduleActivityArgs
{
ActivityType = "action-trans",
ReardriveIndices = new[]
{
4,
5,
},
ActivityPara = new Tencentcloud.Inputs.MpsScheduleActivityActivityParaArgs
{
TranscodeTask = new Tencentcloud.Inputs.MpsScheduleActivityActivityParaTranscodeTaskArgs
{
Definition = 10,
},
},
},
new Tencentcloud.Inputs.MpsScheduleActivityArgs
{
ActivityType = "action-trans",
ReardriveIndices = new[]
{
10,
},
ActivityPara = new Tencentcloud.Inputs.MpsScheduleActivityActivityParaArgs
{
TranscodeTask = new Tencentcloud.Inputs.MpsScheduleActivityActivityParaTranscodeTaskArgs
{
Definition = 10,
},
},
},
new Tencentcloud.Inputs.MpsScheduleActivityArgs
{
ActivityType = "action-trans",
ReardriveIndices = new[]
{
10,
},
ActivityPara = new Tencentcloud.Inputs.MpsScheduleActivityActivityParaArgs
{
TranscodeTask = new Tencentcloud.Inputs.MpsScheduleActivityActivityParaTranscodeTaskArgs
{
Definition = 10,
},
},
},
new Tencentcloud.Inputs.MpsScheduleActivityArgs
{
ActivityType = "action-trans",
ReardriveIndices = new[]
{
10,
},
ActivityPara = new Tencentcloud.Inputs.MpsScheduleActivityActivityParaArgs
{
TranscodeTask = new Tencentcloud.Inputs.MpsScheduleActivityActivityParaTranscodeTaskArgs
{
Definition = 10,
},
},
},
new Tencentcloud.Inputs.MpsScheduleActivityArgs
{
ActivityType = "action-trans",
ReardriveIndices = new[]
{
8,
},
ActivityPara = new Tencentcloud.Inputs.MpsScheduleActivityActivityParaArgs
{
TranscodeTask = new Tencentcloud.Inputs.MpsScheduleActivityActivityParaTranscodeTaskArgs
{
Definition = 10,
},
},
},
new Tencentcloud.Inputs.MpsScheduleActivityArgs
{
ActivityType = "action-trans",
ReardriveIndices = new[]
{
9,
},
ActivityPara = new Tencentcloud.Inputs.MpsScheduleActivityActivityParaArgs
{
TranscodeTask = new Tencentcloud.Inputs.MpsScheduleActivityActivityParaTranscodeTaskArgs
{
Definition = 10,
},
},
},
new Tencentcloud.Inputs.MpsScheduleActivityArgs
{
ActivityType = "action-trans",
ReardriveIndices = new[]
{
10,
},
ActivityPara = new Tencentcloud.Inputs.MpsScheduleActivityActivityParaArgs
{
TranscodeTask = new Tencentcloud.Inputs.MpsScheduleActivityActivityParaTranscodeTaskArgs
{
Definition = 10,
},
},
},
new Tencentcloud.Inputs.MpsScheduleActivityArgs
{
ActivityType = "output",
},
},
OutputStorage = new Tencentcloud.Inputs.MpsScheduleOutputStorageArgs
{
Type = "COS",
CosOutputStorage = new Tencentcloud.Inputs.MpsScheduleOutputStorageCosOutputStorageArgs
{
Bucket = output.Bucket,
Region = "%s",
},
},
OutputDir = "output/",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetCosBucketObjectArgs;
import com.pulumi.tencentcloud.CosBucket;
import com.pulumi.tencentcloud.CosBucketArgs;
import com.pulumi.tencentcloud.MpsSchedule;
import com.pulumi.tencentcloud.MpsScheduleArgs;
import com.pulumi.tencentcloud.inputs.MpsScheduleTriggerArgs;
import com.pulumi.tencentcloud.inputs.MpsScheduleTriggerCosFileUploadTriggerArgs;
import com.pulumi.tencentcloud.inputs.MpsScheduleActivityArgs;
import com.pulumi.tencentcloud.inputs.MpsScheduleActivityActivityParaArgs;
import com.pulumi.tencentcloud.inputs.MpsScheduleActivityActivityParaTranscodeTaskArgs;
import com.pulumi.tencentcloud.inputs.MpsScheduleOutputStorageArgs;
import com.pulumi.tencentcloud.inputs.MpsScheduleOutputStorageCosOutputStorageArgs;
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) {
final var object = TencentcloudFunctions.getCosBucketObject(GetCosBucketObjectArgs.builder()
.bucket(String.format("keep-bucket-%s", local.app_id()))
.key("/mps-test/test.mov")
.build());
var output = new CosBucket("output", CosBucketArgs.builder()
.bucket(String.format("tf-bucket-mps-schedule-output-%s", local.app_id()))
.forceClean(true)
.acl("public-read")
.build());
var schedule = new MpsSchedule("schedule", MpsScheduleArgs.builder()
.scheduleName("tf_test_mps_schedule_%d")
.trigger(MpsScheduleTriggerArgs.builder()
.type("CosFileUpload")
.cosFileUploadTrigger(MpsScheduleTriggerCosFileUploadTriggerArgs.builder()
.bucket(object.applyValue(getCosBucketObjectResult -> getCosBucketObjectResult.bucket()))
.region("%s")
.dir("/upload/")
.formats(
"flv",
"mov")
.build())
.build())
.activities(
MpsScheduleActivityArgs.builder()
.activityType("input")
.reardriveIndices(
1,
2)
.build(),
MpsScheduleActivityArgs.builder()
.activityType("action-trans")
.reardriveIndices(3)
.activityPara(MpsScheduleActivityActivityParaArgs.builder()
.transcodeTask(MpsScheduleActivityActivityParaTranscodeTaskArgs.builder()
.definition(10)
.build())
.build())
.build(),
MpsScheduleActivityArgs.builder()
.activityType("action-trans")
.reardriveIndices(
6,
7)
.activityPara(MpsScheduleActivityActivityParaArgs.builder()
.transcodeTask(MpsScheduleActivityActivityParaTranscodeTaskArgs.builder()
.definition(10)
.build())
.build())
.build(),
MpsScheduleActivityArgs.builder()
.activityType("action-trans")
.reardriveIndices(
4,
5)
.activityPara(MpsScheduleActivityActivityParaArgs.builder()
.transcodeTask(MpsScheduleActivityActivityParaTranscodeTaskArgs.builder()
.definition(10)
.build())
.build())
.build(),
MpsScheduleActivityArgs.builder()
.activityType("action-trans")
.reardriveIndices(10)
.activityPara(MpsScheduleActivityActivityParaArgs.builder()
.transcodeTask(MpsScheduleActivityActivityParaTranscodeTaskArgs.builder()
.definition(10)
.build())
.build())
.build(),
MpsScheduleActivityArgs.builder()
.activityType("action-trans")
.reardriveIndices(10)
.activityPara(MpsScheduleActivityActivityParaArgs.builder()
.transcodeTask(MpsScheduleActivityActivityParaTranscodeTaskArgs.builder()
.definition(10)
.build())
.build())
.build(),
MpsScheduleActivityArgs.builder()
.activityType("action-trans")
.reardriveIndices(10)
.activityPara(MpsScheduleActivityActivityParaArgs.builder()
.transcodeTask(MpsScheduleActivityActivityParaTranscodeTaskArgs.builder()
.definition(10)
.build())
.build())
.build(),
MpsScheduleActivityArgs.builder()
.activityType("action-trans")
.reardriveIndices(8)
.activityPara(MpsScheduleActivityActivityParaArgs.builder()
.transcodeTask(MpsScheduleActivityActivityParaTranscodeTaskArgs.builder()
.definition(10)
.build())
.build())
.build(),
MpsScheduleActivityArgs.builder()
.activityType("action-trans")
.reardriveIndices(9)
.activityPara(MpsScheduleActivityActivityParaArgs.builder()
.transcodeTask(MpsScheduleActivityActivityParaTranscodeTaskArgs.builder()
.definition(10)
.build())
.build())
.build(),
MpsScheduleActivityArgs.builder()
.activityType("action-trans")
.reardriveIndices(10)
.activityPara(MpsScheduleActivityActivityParaArgs.builder()
.transcodeTask(MpsScheduleActivityActivityParaTranscodeTaskArgs.builder()
.definition(10)
.build())
.build())
.build(),
MpsScheduleActivityArgs.builder()
.activityType("output")
.build())
.outputStorage(MpsScheduleOutputStorageArgs.builder()
.type("COS")
.cosOutputStorage(MpsScheduleOutputStorageCosOutputStorageArgs.builder()
.bucket(output.bucket())
.region("%s")
.build())
.build())
.outputDir("output/")
.build());
}
}
resources:
output:
type: tencentcloud:CosBucket
properties:
bucket: tf-bucket-mps-schedule-output-${local.app_id}
forceClean: true
acl: public-read
schedule:
type: tencentcloud:MpsSchedule
properties:
scheduleName: tf_test_mps_schedule_%d
trigger:
type: CosFileUpload
cosFileUploadTrigger:
bucket: ${object.bucket}
region: '%s'
dir: /upload/
formats:
- flv
- mov
activities:
- activityType: input
reardriveIndices:
- 1
- 2
- activityType: action-trans
reardriveIndices:
- 3
activityPara:
transcodeTask:
definition: 10
- activityType: action-trans
reardriveIndices:
- 6
- 7
activityPara:
transcodeTask:
definition: 10
- activityType: action-trans
reardriveIndices:
- 4
- 5
activityPara:
transcodeTask:
definition: 10
- activityType: action-trans
reardriveIndices:
- 10
activityPara:
transcodeTask:
definition: 10
- activityType: action-trans
reardriveIndices:
- 10
activityPara:
transcodeTask:
definition: 10
- activityType: action-trans
reardriveIndices:
- 10
activityPara:
transcodeTask:
definition: 10
- activityType: action-trans
reardriveIndices:
- 8
activityPara:
transcodeTask:
definition: 10
- activityType: action-trans
reardriveIndices:
- 9
activityPara:
transcodeTask:
definition: 10
- activityType: action-trans
reardriveIndices:
- 10
activityPara:
transcodeTask:
definition: 10
- activityType: output
outputStorage:
type: COS
cosOutputStorage:
bucket: ${output.bucket}
region: '%s'
outputDir: output/
variables:
object:
fn::invoke:
function: tencentcloud:getCosBucketObject
arguments:
bucket: keep-bucket-${local.app_id}
key: /mps-test/test.mov
Create MpsSchedule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MpsSchedule(name: string, args: MpsScheduleArgs, opts?: CustomResourceOptions);
@overload
def MpsSchedule(resource_name: str,
args: MpsScheduleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MpsSchedule(resource_name: str,
opts: Optional[ResourceOptions] = None,
activities: Optional[Sequence[MpsScheduleActivityArgs]] = None,
schedule_name: Optional[str] = None,
trigger: Optional[MpsScheduleTriggerArgs] = None,
mps_schedule_id: Optional[str] = None,
output_dir: Optional[str] = None,
output_storage: Optional[MpsScheduleOutputStorageArgs] = None,
resource_id: Optional[str] = None,
task_notify_config: Optional[MpsScheduleTaskNotifyConfigArgs] = None)
func NewMpsSchedule(ctx *Context, name string, args MpsScheduleArgs, opts ...ResourceOption) (*MpsSchedule, error)
public MpsSchedule(string name, MpsScheduleArgs args, CustomResourceOptions? opts = null)
public MpsSchedule(String name, MpsScheduleArgs args)
public MpsSchedule(String name, MpsScheduleArgs args, CustomResourceOptions options)
type: tencentcloud:MpsSchedule
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 MpsScheduleArgs
- 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 MpsScheduleArgs
- 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 MpsScheduleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MpsScheduleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MpsScheduleArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
MpsSchedule 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 MpsSchedule resource accepts the following input properties:
- Activities
List<Mps
Schedule Activity> - The subtasks of the scheme.
- Schedule
Name string - The scheme name (max 128 characters). This name should be unique across your account.
- Trigger
Mps
Schedule Trigger - The trigger of the scheme. If a file is uploaded to the specified bucket, the scheme will be triggered.
- Mps
Schedule stringId - 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, the file will be saved to the trigger directory. - Output
Storage MpsSchedule Output Storage - The bucket to save the output file. If you do not specify this parameter, the bucket in
Trigger
will be used. - Resource
Id string - Resource ID, you need to ensure that the corresponding resource is open. The default is the account main resource ID.
- Task
Notify MpsConfig Schedule Task Notify Config - The notification configuration. If you do not specify this parameter, notifications will not be sent.
- Activities
[]Mps
Schedule Activity Args - The subtasks of the scheme.
- Schedule
Name string - The scheme name (max 128 characters). This name should be unique across your account.
- Trigger
Mps
Schedule Trigger Args - The trigger of the scheme. If a file is uploaded to the specified bucket, the scheme will be triggered.
- Mps
Schedule stringId - 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, the file will be saved to the trigger directory. - Output
Storage MpsSchedule Output Storage Args - The bucket to save the output file. If you do not specify this parameter, the bucket in
Trigger
will be used. - Resource
Id string - Resource ID, you need to ensure that the corresponding resource is open. The default is the account main resource ID.
- Task
Notify MpsConfig Schedule Task Notify Config Args - The notification configuration. If you do not specify this parameter, notifications will not be sent.
- activities
List<Mps
Schedule Activity> - The subtasks of the scheme.
- schedule
Name String - The scheme name (max 128 characters). This name should be unique across your account.
- trigger
Mps
Schedule Trigger - The trigger of the scheme. If a file is uploaded to the specified bucket, the scheme will be triggered.
- mps
Schedule StringId - 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, the file will be saved to the trigger directory. - output
Storage MpsSchedule Output Storage - The bucket to save the output file. If you do not specify this parameter, the bucket in
Trigger
will be used. - resource
Id String - Resource ID, you need to ensure that the corresponding resource is open. The default is the account main resource ID.
- task
Notify MpsConfig Schedule Task Notify Config - The notification configuration. If you do not specify this parameter, notifications will not be sent.
- activities
Mps
Schedule Activity[] - The subtasks of the scheme.
- schedule
Name string - The scheme name (max 128 characters). This name should be unique across your account.
- trigger
Mps
Schedule Trigger - The trigger of the scheme. If a file is uploaded to the specified bucket, the scheme will be triggered.
- mps
Schedule stringId - 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, the file will be saved to the trigger directory. - output
Storage MpsSchedule Output Storage - The bucket to save the output file. If you do not specify this parameter, the bucket in
Trigger
will be used. - resource
Id string - Resource ID, you need to ensure that the corresponding resource is open. The default is the account main resource ID.
- task
Notify MpsConfig Schedule Task Notify Config - The notification configuration. If you do not specify this parameter, notifications will not be sent.
- activities
Sequence[Mps
Schedule Activity Args] - The subtasks of the scheme.
- schedule_
name str - The scheme name (max 128 characters). This name should be unique across your account.
- trigger
Mps
Schedule Trigger Args - The trigger of the scheme. If a file is uploaded to the specified bucket, the scheme will be triggered.
- mps_
schedule_ strid - 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, the file will be saved to the trigger directory. - output_
storage MpsSchedule Output Storage Args - The bucket to save the output file. If you do not specify this parameter, the bucket in
Trigger
will be used. - resource_
id str - Resource ID, you need to ensure that the corresponding resource is open. The default is the account main resource ID.
- task_
notify_ Mpsconfig Schedule Task Notify Config Args - The notification configuration. If you do not specify this parameter, notifications will not be sent.
- activities List<Property Map>
- The subtasks of the scheme.
- schedule
Name String - The scheme name (max 128 characters). This name should be unique across your account.
- trigger Property Map
- The trigger of the scheme. If a file is uploaded to the specified bucket, the scheme will be triggered.
- mps
Schedule StringId - 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, the file will be saved to the trigger directory. - output
Storage Property Map - The bucket to save the output file. If you do not specify this parameter, the bucket in
Trigger
will be used. - resource
Id String - Resource ID, you need to ensure that the corresponding resource is open. The default is the account main resource ID.
- task
Notify Property MapConfig - The notification configuration. If you do not specify this parameter, notifications will not be sent.
Outputs
All input properties are implicitly available as output properties. Additionally, the MpsSchedule 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 MpsSchedule Resource
Get an existing MpsSchedule 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?: MpsScheduleState, opts?: CustomResourceOptions): MpsSchedule
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
activities: Optional[Sequence[MpsScheduleActivityArgs]] = None,
mps_schedule_id: Optional[str] = None,
output_dir: Optional[str] = None,
output_storage: Optional[MpsScheduleOutputStorageArgs] = None,
resource_id: Optional[str] = None,
schedule_name: Optional[str] = None,
task_notify_config: Optional[MpsScheduleTaskNotifyConfigArgs] = None,
trigger: Optional[MpsScheduleTriggerArgs] = None) -> MpsSchedule
func GetMpsSchedule(ctx *Context, name string, id IDInput, state *MpsScheduleState, opts ...ResourceOption) (*MpsSchedule, error)
public static MpsSchedule Get(string name, Input<string> id, MpsScheduleState? state, CustomResourceOptions? opts = null)
public static MpsSchedule get(String name, Output<String> id, MpsScheduleState state, CustomResourceOptions options)
resources: _: type: tencentcloud:MpsSchedule 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.
- Activities
List<Mps
Schedule Activity> - The subtasks of the scheme.
- Mps
Schedule stringId - 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, the file will be saved to the trigger directory. - Output
Storage MpsSchedule Output Storage - The bucket to save the output file. If you do not specify this parameter, the bucket in
Trigger
will be used. - Resource
Id string - Resource ID, you need to ensure that the corresponding resource is open. The default is the account main resource ID.
- Schedule
Name string - The scheme name (max 128 characters). This name should be unique across your account.
- Task
Notify MpsConfig Schedule Task Notify Config - The notification configuration. If you do not specify this parameter, notifications will not be sent.
- Trigger
Mps
Schedule Trigger - The trigger of the scheme. If a file is uploaded to the specified bucket, the scheme will be triggered.
- Activities
[]Mps
Schedule Activity Args - The subtasks of the scheme.
- Mps
Schedule stringId - 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, the file will be saved to the trigger directory. - Output
Storage MpsSchedule Output Storage Args - The bucket to save the output file. If you do not specify this parameter, the bucket in
Trigger
will be used. - Resource
Id string - Resource ID, you need to ensure that the corresponding resource is open. The default is the account main resource ID.
- Schedule
Name string - The scheme name (max 128 characters). This name should be unique across your account.
- Task
Notify MpsConfig Schedule Task Notify Config Args - The notification configuration. If you do not specify this parameter, notifications will not be sent.
- Trigger
Mps
Schedule Trigger Args - The trigger of the scheme. If a file is uploaded to the specified bucket, the scheme will be triggered.
- activities
List<Mps
Schedule Activity> - The subtasks of the scheme.
- mps
Schedule StringId - 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, the file will be saved to the trigger directory. - output
Storage MpsSchedule Output Storage - The bucket to save the output file. If you do not specify this parameter, the bucket in
Trigger
will be used. - resource
Id String - Resource ID, you need to ensure that the corresponding resource is open. The default is the account main resource ID.
- schedule
Name String - The scheme name (max 128 characters). This name should be unique across your account.
- task
Notify MpsConfig Schedule Task Notify Config - The notification configuration. If you do not specify this parameter, notifications will not be sent.
- trigger
Mps
Schedule Trigger - The trigger of the scheme. If a file is uploaded to the specified bucket, the scheme will be triggered.
- activities
Mps
Schedule Activity[] - The subtasks of the scheme.
- mps
Schedule stringId - 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, the file will be saved to the trigger directory. - output
Storage MpsSchedule Output Storage - The bucket to save the output file. If you do not specify this parameter, the bucket in
Trigger
will be used. - resource
Id string - Resource ID, you need to ensure that the corresponding resource is open. The default is the account main resource ID.
- schedule
Name string - The scheme name (max 128 characters). This name should be unique across your account.
- task
Notify MpsConfig Schedule Task Notify Config - The notification configuration. If you do not specify this parameter, notifications will not be sent.
- trigger
Mps
Schedule Trigger - The trigger of the scheme. If a file is uploaded to the specified bucket, the scheme will be triggered.
- activities
Sequence[Mps
Schedule Activity Args] - The subtasks of the scheme.
- mps_
schedule_ strid - 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, the file will be saved to the trigger directory. - output_
storage MpsSchedule Output Storage Args - The bucket to save the output file. If you do not specify this parameter, the bucket in
Trigger
will be used. - resource_
id str - Resource ID, you need to ensure that the corresponding resource is open. The default is the account main resource ID.
- schedule_
name str - The scheme name (max 128 characters). This name should be unique across your account.
- task_
notify_ Mpsconfig Schedule Task Notify Config Args - The notification configuration. If you do not specify this parameter, notifications will not be sent.
- trigger
Mps
Schedule Trigger Args - The trigger of the scheme. If a file is uploaded to the specified bucket, the scheme will be triggered.
- activities List<Property Map>
- The subtasks of the scheme.
- mps
Schedule StringId - 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, the file will be saved to the trigger directory. - output
Storage Property Map - The bucket to save the output file. If you do not specify this parameter, the bucket in
Trigger
will be used. - resource
Id String - Resource ID, you need to ensure that the corresponding resource is open. The default is the account main resource ID.
- schedule
Name String - The scheme name (max 128 characters). This name should be unique across your account.
- task
Notify Property MapConfig - The notification configuration. If you do not specify this parameter, notifications will not be sent.
- trigger Property Map
- The trigger of the scheme. If a file is uploaded to the specified bucket, the scheme will be triggered.
Supporting Types
MpsScheduleActivity, MpsScheduleActivityArgs
- Activity
Type string - The subtask type.
input
: The start.output
: The end.action-trans
: Transcoding.action-samplesnapshot
: Sampled screencapturing.action-AIAnalysis
: Content analysis.action-AIRecognition
: Content recognition.action-aiReview
: Content moderation.action-animated-graphics
: Animated screenshot generation.action-image-sprite
: Image sprite generation.action-snapshotByTimeOffset
: Time point screencapturing.action-adaptive-substream
: Adaptive bitrate streaming.Note: This field may return null, indicating that no valid values can be obtained. - Activity
Para MpsSchedule Activity Activity Para - The parameters of a subtask.Note: This field may return null, indicating that no valid values can be obtained.
- Reardrive
Indices List<double> - The indexes of the subsequent actions. Note: This field may return null, indicating that no valid values can be obtained.
- Activity
Type string - The subtask type.
input
: The start.output
: The end.action-trans
: Transcoding.action-samplesnapshot
: Sampled screencapturing.action-AIAnalysis
: Content analysis.action-AIRecognition
: Content recognition.action-aiReview
: Content moderation.action-animated-graphics
: Animated screenshot generation.action-image-sprite
: Image sprite generation.action-snapshotByTimeOffset
: Time point screencapturing.action-adaptive-substream
: Adaptive bitrate streaming.Note: This field may return null, indicating that no valid values can be obtained. - Activity
Para MpsSchedule Activity Activity Para - The parameters of a subtask.Note: This field may return null, indicating that no valid values can be obtained.
- Reardrive
Indices []float64 - The indexes of the subsequent actions. Note: This field may return null, indicating that no valid values can be obtained.
- activity
Type String - The subtask type.
input
: The start.output
: The end.action-trans
: Transcoding.action-samplesnapshot
: Sampled screencapturing.action-AIAnalysis
: Content analysis.action-AIRecognition
: Content recognition.action-aiReview
: Content moderation.action-animated-graphics
: Animated screenshot generation.action-image-sprite
: Image sprite generation.action-snapshotByTimeOffset
: Time point screencapturing.action-adaptive-substream
: Adaptive bitrate streaming.Note: This field may return null, indicating that no valid values can be obtained. - activity
Para MpsSchedule Activity Activity Para - The parameters of a subtask.Note: This field may return null, indicating that no valid values can be obtained.
- reardrive
Indices List<Double> - The indexes of the subsequent actions. Note: This field may return null, indicating that no valid values can be obtained.
- activity
Type string - The subtask type.
input
: The start.output
: The end.action-trans
: Transcoding.action-samplesnapshot
: Sampled screencapturing.action-AIAnalysis
: Content analysis.action-AIRecognition
: Content recognition.action-aiReview
: Content moderation.action-animated-graphics
: Animated screenshot generation.action-image-sprite
: Image sprite generation.action-snapshotByTimeOffset
: Time point screencapturing.action-adaptive-substream
: Adaptive bitrate streaming.Note: This field may return null, indicating that no valid values can be obtained. - activity
Para MpsSchedule Activity Activity Para - The parameters of a subtask.Note: This field may return null, indicating that no valid values can be obtained.
- reardrive
Indices number[] - The indexes of the subsequent actions. Note: This field may return null, indicating that no valid values can be obtained.
- activity_
type str - The subtask type.
input
: The start.output
: The end.action-trans
: Transcoding.action-samplesnapshot
: Sampled screencapturing.action-AIAnalysis
: Content analysis.action-AIRecognition
: Content recognition.action-aiReview
: Content moderation.action-animated-graphics
: Animated screenshot generation.action-image-sprite
: Image sprite generation.action-snapshotByTimeOffset
: Time point screencapturing.action-adaptive-substream
: Adaptive bitrate streaming.Note: This field may return null, indicating that no valid values can be obtained. - activity_
para MpsSchedule Activity Activity Para - The parameters of a subtask.Note: This field may return null, indicating that no valid values can be obtained.
- reardrive_
indices Sequence[float] - The indexes of the subsequent actions. Note: This field may return null, indicating that no valid values can be obtained.
- activity
Type String - The subtask type.
input
: The start.output
: The end.action-trans
: Transcoding.action-samplesnapshot
: Sampled screencapturing.action-AIAnalysis
: Content analysis.action-AIRecognition
: Content recognition.action-aiReview
: Content moderation.action-animated-graphics
: Animated screenshot generation.action-image-sprite
: Image sprite generation.action-snapshotByTimeOffset
: Time point screencapturing.action-adaptive-substream
: Adaptive bitrate streaming.Note: This field may return null, indicating that no valid values can be obtained. - activity
Para Property Map - The parameters of a subtask.Note: This field may return null, indicating that no valid values can be obtained.
- reardrive
Indices List<Number> - The indexes of the subsequent actions. Note: This field may return null, indicating that no valid values can be obtained.
MpsScheduleActivityActivityPara, MpsScheduleActivityActivityParaArgs
- Adaptive
Dynamic MpsStreaming Task Schedule Activity Activity Para Adaptive Dynamic Streaming Task - An adaptive bitrate streaming task.
- Ai
Analysis MpsTask Schedule Activity Activity Para Ai Analysis Task - A content analysis task.
- Ai
Content MpsReview Task Schedule Activity Activity Para Ai Content Review Task - A content moderation task.
- Ai
Recognition MpsTask Schedule Activity Activity Para Ai Recognition Task - A content recognition task.
- Animated
Graphic MpsTask Schedule Activity Activity Para Animated Graphic Task - An animated screenshot generation task.
- Image
Sprite MpsTask Schedule Activity Activity Para Image Sprite Task - An image sprite generation task.
- Sample
Snapshot MpsTask Schedule Activity Activity Para Sample Snapshot Task - A sampled screencapturing task.
- Snapshot
By MpsTime Offset Task Schedule Activity Activity Para Snapshot By Time Offset Task - A time point screencapturing task.
- Transcode
Task MpsSchedule Activity Activity Para Transcode Task - A transcoding task.
- Adaptive
Dynamic MpsStreaming Task Schedule Activity Activity Para Adaptive Dynamic Streaming Task - An adaptive bitrate streaming task.
- Ai
Analysis MpsTask Schedule Activity Activity Para Ai Analysis Task - A content analysis task.
- Ai
Content MpsReview Task Schedule Activity Activity Para Ai Content Review Task - A content moderation task.
- Ai
Recognition MpsTask Schedule Activity Activity Para Ai Recognition Task - A content recognition task.
- Animated
Graphic MpsTask Schedule Activity Activity Para Animated Graphic Task - An animated screenshot generation task.
- Image
Sprite MpsTask Schedule Activity Activity Para Image Sprite Task - An image sprite generation task.
- Sample
Snapshot MpsTask Schedule Activity Activity Para Sample Snapshot Task - A sampled screencapturing task.
- Snapshot
By MpsTime Offset Task Schedule Activity Activity Para Snapshot By Time Offset Task - A time point screencapturing task.
- Transcode
Task MpsSchedule Activity Activity Para Transcode Task - A transcoding task.
- adaptive
Dynamic MpsStreaming Task Schedule Activity Activity Para Adaptive Dynamic Streaming Task - An adaptive bitrate streaming task.
- ai
Analysis MpsTask Schedule Activity Activity Para Ai Analysis Task - A content analysis task.
- ai
Content MpsReview Task Schedule Activity Activity Para Ai Content Review Task - A content moderation task.
- ai
Recognition MpsTask Schedule Activity Activity Para Ai Recognition Task - A content recognition task.
- animated
Graphic MpsTask Schedule Activity Activity Para Animated Graphic Task - An animated screenshot generation task.
- image
Sprite MpsTask Schedule Activity Activity Para Image Sprite Task - An image sprite generation task.
- sample
Snapshot MpsTask Schedule Activity Activity Para Sample Snapshot Task - A sampled screencapturing task.
- snapshot
By MpsTime Offset Task Schedule Activity Activity Para Snapshot By Time Offset Task - A time point screencapturing task.
- transcode
Task MpsSchedule Activity Activity Para Transcode Task - A transcoding task.
- adaptive
Dynamic MpsStreaming Task Schedule Activity Activity Para Adaptive Dynamic Streaming Task - An adaptive bitrate streaming task.
- ai
Analysis MpsTask Schedule Activity Activity Para Ai Analysis Task - A content analysis task.
- ai
Content MpsReview Task Schedule Activity Activity Para Ai Content Review Task - A content moderation task.
- ai
Recognition MpsTask Schedule Activity Activity Para Ai Recognition Task - A content recognition task.
- animated
Graphic MpsTask Schedule Activity Activity Para Animated Graphic Task - An animated screenshot generation task.
- image
Sprite MpsTask Schedule Activity Activity Para Image Sprite Task - An image sprite generation task.
- sample
Snapshot MpsTask Schedule Activity Activity Para Sample Snapshot Task - A sampled screencapturing task.
- snapshot
By MpsTime Offset Task Schedule Activity Activity Para Snapshot By Time Offset Task - A time point screencapturing task.
- transcode
Task MpsSchedule Activity Activity Para Transcode Task - A transcoding task.
- adaptive_
dynamic_ Mpsstreaming_ task Schedule Activity Activity Para Adaptive Dynamic Streaming Task - An adaptive bitrate streaming task.
- ai_
analysis_ Mpstask Schedule Activity Activity Para Ai Analysis Task - A content analysis task.
- ai_
content_ Mpsreview_ task Schedule Activity Activity Para Ai Content Review Task - A content moderation task.
- ai_
recognition_ Mpstask Schedule Activity Activity Para Ai Recognition Task - A content recognition task.
- animated_
graphic_ Mpstask Schedule Activity Activity Para Animated Graphic Task - An animated screenshot generation task.
- image_
sprite_ Mpstask Schedule Activity Activity Para Image Sprite Task - An image sprite generation task.
- sample_
snapshot_ Mpstask Schedule Activity Activity Para Sample Snapshot Task - A sampled screencapturing task.
- snapshot_
by_ Mpstime_ offset_ task Schedule Activity Activity Para Snapshot By Time Offset Task - A time point screencapturing task.
- transcode_
task MpsSchedule Activity Activity Para Transcode Task - A transcoding task.
- adaptive
Dynamic Property MapStreaming Task - An adaptive bitrate streaming task.
- ai
Analysis Property MapTask - A content analysis task.
- ai
Content Property MapReview Task - A content moderation task.
- ai
Recognition Property MapTask - A content recognition task.
- animated
Graphic Property MapTask - An animated screenshot generation task.
- image
Sprite Property MapTask - An image sprite generation task.
- sample
Snapshot Property MapTask - A sampled screencapturing task.
- snapshot
By Property MapTime Offset Task - A time point screencapturing task.
- transcode
Task Property Map - A transcoding task.
MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTask, MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskArgs
- Definition double
- ID of a watermarking template.
- Add
On List<MpsSubtitles Schedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle> - Subtitle files to insert.Note: This field may return null, indicating that no valid value 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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<MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task Watermark Set> - List of up to 10 image or text watermarks.
- Definition float64
- ID of a watermarking template.
- Add
On []MpsSubtitles Schedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle - Subtitle files to insert.Note: This field may return null, indicating that no valid value 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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 []MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task Watermark Set - List of up to 10 image or text watermarks.
- definition Double
- ID of a watermarking template.
- add
On List<MpsSubtitles Schedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle> - Subtitle files to insert.Note: This field may return null, indicating that no valid value 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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<MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task Watermark Set> - List of up to 10 image or text watermarks.
- definition number
- ID of a watermarking template.
- add
On MpsSubtitles Schedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle[] - Subtitle files to insert.Note: This field may return null, indicating that no valid value 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task Watermark Set[] - List of up to 10 image or text watermarks.
- definition float
- ID of a watermarking template.
- add_
on_ Sequence[Mpssubtitles Schedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle] - Subtitle files to insert.Note: This field may return null, indicating that no valid value 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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[MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task Watermark Set] - List of up to 10 image or text watermarks.
- definition Number
- ID of a watermarking template.
- add
On List<Property Map>Subtitles - Subtitle files to insert.Note: This field may return null, indicating that no valid value 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.
MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskAddOnSubtitle, MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskAddOnSubtitleArgs
- Subtitle
Mps
Schedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle Subtitle - Subtitle file.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.
- Subtitle
Mps
Schedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle Subtitle - Subtitle file.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.
- subtitle
Mps
Schedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle Subtitle - Subtitle file.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.
- subtitle
Mps
Schedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle Subtitle - Subtitle file.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.
- subtitle
Mps
Schedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle Subtitle - Subtitle file.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.
- subtitle Property Map
- Subtitle file.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.
MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskAddOnSubtitleSubtitle, MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskAddOnSubtitleSubtitleArgs
- 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 Schedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle Subtitle Cos Input Info - The information of the COS object to process. This parameter is valid and required when Type is COS.
- S3Input
Info MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle Subtitle S3Input Info - The information of the AWS S3 object processed. This parameter is required if Type is AWS-S3.Note: This field may return null, indicating that no valid value can be obtained.
- Url
Input MpsInfo Schedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle Subtitle Url Input Info - The URL of the object to process. This parameter is valid and required when Type is URL.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 Schedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle Subtitle Cos Input Info - The information of the COS object to process. This parameter is valid and required when Type is COS.
- S3Input
Info MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle Subtitle S3Input Info - The information of the AWS S3 object processed. This parameter is required if Type is AWS-S3.Note: This field may return null, indicating that no valid value can be obtained.
- Url
Input MpsInfo Schedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle Subtitle Url Input Info - The URL of the object to process. This parameter is valid and required when Type is URL.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 Schedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle Subtitle Cos Input Info - The information of the COS object to process. This parameter is valid and required when Type is COS.
- s3Input
Info MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle Subtitle S3Input Info - The information of the AWS S3 object processed. This parameter is required if Type is AWS-S3.Note: This field may return null, indicating that no valid value can be obtained.
- url
Input MpsInfo Schedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle Subtitle Url Input Info - The URL of the object to process. This parameter is valid and required when Type is URL.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 Schedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle Subtitle Cos Input Info - The information of the COS object to process. This parameter is valid and required when Type is COS.
- s3Input
Info MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle Subtitle S3Input Info - The information of the AWS S3 object processed. This parameter is required if Type is AWS-S3.Note: This field may return null, indicating that no valid value can be obtained.
- url
Input MpsInfo Schedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle Subtitle Url Input Info - The URL of the object to process. This parameter is valid and required when Type is URL.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 Schedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle Subtitle Cos Input Info - The information of the COS object to process. This parameter is valid and required when Type is COS.
- s3_
input_ Mpsinfo Schedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle Subtitle S3Input Info - The information of the AWS S3 object processed. This parameter is required if Type is AWS-S3.Note: This field may return null, indicating that no valid value can be obtained.
- url_
input_ Mpsinfo Schedule Activity Activity Para Adaptive Dynamic Streaming Task Add On Subtitle Subtitle Url Input Info - The URL of the object to process. This parameter is valid and required when Type is URL.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 is COS.
- s3Input
Info Property Map - The information of the AWS S3 object processed. This parameter is required if Type is AWS-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 is URL.Note: This field may return null, indicating that no valid value can be obtained.
MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskAddOnSubtitleSubtitleCosInputInfo, MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskAddOnSubtitleSubtitleCosInputInfoArgs
MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskAddOnSubtitleSubtitleS3InputInfo, MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskAddOnSubtitleSubtitleS3InputInfoArgs
- 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.
MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskAddOnSubtitleSubtitleUrlInputInfo, MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskAddOnSubtitleSubtitleUrlInputInfoArgs
- 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.
MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskOutputStorage, MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskOutputStorageArgs
- Type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COSAWS-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 Schedule Activity Activity Para Adaptive Dynamic Streaming Task 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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 COSAWS-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 Schedule Activity Activity Para Adaptive Dynamic Streaming Task 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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 COSAWS-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 Schedule Activity Activity Para Adaptive Dynamic Streaming Task 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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 COSAWS-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 Schedule Activity Activity Para Adaptive Dynamic Streaming Task 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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 COSAWS-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 Schedule Activity Activity Para Adaptive Dynamic Streaming Task 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 Schedule Activity Activity Para Adaptive Dynamic Streaming Task 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 COSAWS-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.
MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskOutputStorageCosOutputStorage, MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskOutputStorageCosOutputStorageArgs
- 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.
MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskOutputStorageS3OutputStorage, MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskOutputStorageS3OutputStorageArgs
- 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.
MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskWatermarkSet, MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskWatermarkSetArgs
- 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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.
MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskWatermarkSetRawParameter, MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskWatermarkSetRawParameterArgs
- 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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.
MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskWatermarkSetRawParameterImageTemplate, MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskWatermarkSetRawParameterImageTemplateArgs
- Image
Content MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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%.
MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskWatermarkSetRawParameterImageTemplateImageContent, MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskWatermarkSetRawParameterImageTemplateImageContentArgs
- 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 Schedule Activity Activity Para Adaptive Dynamic Streaming Task 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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 Schedule Activity Activity Para Adaptive Dynamic Streaming Task 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 Schedule Activity Activity Para Adaptive Dynamic Streaming Task 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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 Schedule Activity Activity Para Adaptive Dynamic Streaming Task 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 Schedule Activity Activity Para Adaptive Dynamic Streaming Task 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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 Schedule Activity Activity Para Adaptive Dynamic Streaming Task 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 Schedule Activity Activity Para Adaptive Dynamic Streaming Task 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 MpsSchedule Activity Activity Para Adaptive Dynamic Streaming Task 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 Schedule Activity Activity Para Adaptive Dynamic Streaming Task 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 Schedule Activity Activity Para Adaptive Dynamic Streaming Task 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 Schedule Activity Activity Para Adaptive Dynamic Streaming Task 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 Schedule Activity Activity Para Adaptive Dynamic Streaming Task 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.
MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskWatermarkSetRawParameterImageTemplateImageContentCosInputInfo, MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskWatermarkSetRawParameterImageTemplateImageContentCosInputInfoArgs
MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskWatermarkSetRawParameterImageTemplateImageContentS3InputInfo, MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskWatermarkSetRawParameterImageTemplateImageContentS3InputInfoArgs
- 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.
MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskWatermarkSetRawParameterImageTemplateImageContentUrlInputInfo, MpsScheduleActivityActivityParaAdaptiveDynamicStreamingTaskWatermarkSetRawParameterImageTemplateImageContentUrlInputInfoArgs
- 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.
MpsScheduleActivityActivityParaAiAnalysisTask, MpsScheduleActivityActivityParaAiAnalysisTaskArgs
- 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.
MpsScheduleActivityActivityParaAiContentReviewTask, MpsScheduleActivityActivityParaAiContentReviewTaskArgs
- 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.
MpsScheduleActivityActivityParaAiRecognitionTask, MpsScheduleActivityActivityParaAiRecognitionTaskArgs
- 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.
MpsScheduleActivityActivityParaAnimatedGraphicTask, MpsScheduleActivityActivityParaAnimatedGraphicTaskArgs
- 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 MpsSchedule Activity Activity Para Animated Graphic Task 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 MpsSchedule Activity Activity Para Animated Graphic Task 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 MpsSchedule Activity Activity Para Animated Graphic Task 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 MpsSchedule Activity Activity Para Animated Graphic Task 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 MpsSchedule Activity Activity Para Animated Graphic Task 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.
MpsScheduleActivityActivityParaAnimatedGraphicTaskOutputStorage, MpsScheduleActivityActivityParaAnimatedGraphicTaskOutputStorageArgs
- Type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COSAWS-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 Schedule Activity Activity Para Animated Graphic Task 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 MpsSchedule Activity Activity Para Animated Graphic Task 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 COSAWS-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 Schedule Activity Activity Para Animated Graphic Task 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 MpsSchedule Activity Activity Para Animated Graphic Task 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 COSAWS-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 Schedule Activity Activity Para Animated Graphic Task 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 MpsSchedule Activity Activity Para Animated Graphic Task 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 COSAWS-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 Schedule Activity Activity Para Animated Graphic Task 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 MpsSchedule Activity Activity Para Animated Graphic Task 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 COSAWS-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 Schedule Activity Activity Para Animated Graphic Task 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 Schedule Activity Activity Para Animated Graphic Task 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 COSAWS-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.
MpsScheduleActivityActivityParaAnimatedGraphicTaskOutputStorageCosOutputStorage, MpsScheduleActivityActivityParaAnimatedGraphicTaskOutputStorageCosOutputStorageArgs
- 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.
MpsScheduleActivityActivityParaAnimatedGraphicTaskOutputStorageS3OutputStorage, MpsScheduleActivityActivityParaAnimatedGraphicTaskOutputStorageS3OutputStorageArgs
- 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.
MpsScheduleActivityActivityParaImageSpriteTask, MpsScheduleActivityActivityParaImageSpriteTaskArgs
- Definition double
- ID of an image sprite generating template.
- Object
Number MpsFormat Schedule Activity Activity Para Image Sprite Task 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 MpsSchedule Activity Activity Para Image Sprite Task 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 Schedule Activity Activity Para Image Sprite Task 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 MpsSchedule Activity Activity Para Image Sprite Task 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 Schedule Activity Activity Para Image Sprite Task 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 MpsSchedule Activity Activity Para Image Sprite Task 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 Schedule Activity Activity Para Image Sprite Task 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 MpsSchedule Activity Activity Para Image Sprite Task 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 Schedule Activity Activity Para Image Sprite Task 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 MpsSchedule Activity Activity Para Image Sprite Task 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}
.
MpsScheduleActivityActivityParaImageSpriteTaskObjectNumberFormat, MpsScheduleActivityActivityParaImageSpriteTaskObjectNumberFormatArgs
- 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.
MpsScheduleActivityActivityParaImageSpriteTaskOutputStorage, MpsScheduleActivityActivityParaImageSpriteTaskOutputStorageArgs
- Type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COSAWS-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 Schedule Activity Activity Para Image Sprite Task 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 MpsSchedule Activity Activity Para Image Sprite Task 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 COSAWS-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 Schedule Activity Activity Para Image Sprite Task 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 MpsSchedule Activity Activity Para Image Sprite Task 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 COSAWS-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 Schedule Activity Activity Para Image Sprite Task 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 MpsSchedule Activity Activity Para Image Sprite Task 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 COSAWS-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 Schedule Activity Activity Para Image Sprite Task 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 MpsSchedule Activity Activity Para Image Sprite Task 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 COSAWS-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 Schedule Activity Activity Para Image Sprite Task 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 Schedule Activity Activity Para Image Sprite Task 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 COSAWS-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.
MpsScheduleActivityActivityParaImageSpriteTaskOutputStorageCosOutputStorage, MpsScheduleActivityActivityParaImageSpriteTaskOutputStorageCosOutputStorageArgs
- 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.
MpsScheduleActivityActivityParaImageSpriteTaskOutputStorageS3OutputStorage, MpsScheduleActivityActivityParaImageSpriteTaskOutputStorageS3OutputStorageArgs
- 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.
MpsScheduleActivityActivityParaSampleSnapshotTask, MpsScheduleActivityActivityParaSampleSnapshotTaskArgs
- Definition double
- ID of a watermarking template.
- Object
Number MpsFormat Schedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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<MpsSchedule Activity Activity Para Sample Snapshot Task 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 Schedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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 []MpsSchedule Activity Activity Para Sample Snapshot Task 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 Schedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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<MpsSchedule Activity Activity Para Sample Snapshot Task 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 Schedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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 Schedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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[MpsSchedule Activity Activity Para Sample Snapshot Task 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.
MpsScheduleActivityActivityParaSampleSnapshotTaskObjectNumberFormat, MpsScheduleActivityActivityParaSampleSnapshotTaskObjectNumberFormatArgs
- 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.
MpsScheduleActivityActivityParaSampleSnapshotTaskOutputStorage, MpsScheduleActivityActivityParaSampleSnapshotTaskOutputStorageArgs
- Type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COSAWS-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 Schedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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 COSAWS-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 Schedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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 COSAWS-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 Schedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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 COSAWS-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 Schedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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 COSAWS-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 Schedule Activity Activity Para Sample Snapshot Task 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 Schedule Activity Activity Para Sample Snapshot Task 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 COSAWS-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.
MpsScheduleActivityActivityParaSampleSnapshotTaskOutputStorageCosOutputStorage, MpsScheduleActivityActivityParaSampleSnapshotTaskOutputStorageCosOutputStorageArgs
- 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.
MpsScheduleActivityActivityParaSampleSnapshotTaskOutputStorageS3OutputStorage, MpsScheduleActivityActivityParaSampleSnapshotTaskOutputStorageS3OutputStorageArgs
- 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.
MpsScheduleActivityActivityParaSampleSnapshotTaskWatermarkSet, MpsScheduleActivityActivityParaSampleSnapshotTaskWatermarkSetArgs
- 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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.
MpsScheduleActivityActivityParaSampleSnapshotTaskWatermarkSetRawParameter, MpsScheduleActivityActivityParaSampleSnapshotTaskWatermarkSetRawParameterArgs
- 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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.
MpsScheduleActivityActivityParaSampleSnapshotTaskWatermarkSetRawParameterImageTemplate, MpsScheduleActivityActivityParaSampleSnapshotTaskWatermarkSetRawParameterImageTemplateArgs
- Image
Content MpsSchedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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%.
MpsScheduleActivityActivityParaSampleSnapshotTaskWatermarkSetRawParameterImageTemplateImageContent, MpsScheduleActivityActivityParaSampleSnapshotTaskWatermarkSetRawParameterImageTemplateImageContentArgs
- 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 Schedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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 Schedule Activity Activity Para Sample Snapshot Task 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 Schedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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 Schedule Activity Activity Para Sample Snapshot Task 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 Schedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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 Schedule Activity Activity Para Sample Snapshot Task 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 Schedule Activity Activity Para Sample Snapshot Task 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 MpsSchedule Activity Activity Para Sample Snapshot Task 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 Schedule Activity Activity Para Sample Snapshot Task 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 Schedule Activity Activity Para Sample Snapshot Task 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 Schedule Activity Activity Para Sample Snapshot Task 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 Schedule Activity Activity Para Sample Snapshot Task 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.
MpsScheduleActivityActivityParaSampleSnapshotTaskWatermarkSetRawParameterImageTemplateImageContentCosInputInfo, MpsScheduleActivityActivityParaSampleSnapshotTaskWatermarkSetRawParameterImageTemplateImageContentCosInputInfoArgs
MpsScheduleActivityActivityParaSampleSnapshotTaskWatermarkSetRawParameterImageTemplateImageContentS3InputInfo, MpsScheduleActivityActivityParaSampleSnapshotTaskWatermarkSetRawParameterImageTemplateImageContentS3InputInfoArgs
- 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.
MpsScheduleActivityActivityParaSampleSnapshotTaskWatermarkSetRawParameterImageTemplateImageContentUrlInputInfo, MpsScheduleActivityActivityParaSampleSnapshotTaskWatermarkSetRawParameterImageTemplateImageContentUrlInputInfoArgs
- 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.
MpsScheduleActivityActivityParaSnapshotByTimeOffsetTask, MpsScheduleActivityActivityParaSnapshotByTimeOffsetTaskArgs
- 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 Schedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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. - Watermark
Sets List<MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 Schedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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. - Watermark
Sets []MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 Schedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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. - watermark
Sets List<MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 Schedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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. - watermark
Sets MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 Schedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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. - watermark_
sets Sequence[MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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. - 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.
MpsScheduleActivityActivityParaSnapshotByTimeOffsetTaskObjectNumberFormat, MpsScheduleActivityActivityParaSnapshotByTimeOffsetTaskObjectNumberFormatArgs
- 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.
MpsScheduleActivityActivityParaSnapshotByTimeOffsetTaskOutputStorage, MpsScheduleActivityActivityParaSnapshotByTimeOffsetTaskOutputStorageArgs
- Type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COSAWS-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 Schedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 COSAWS-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 Schedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 COSAWS-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 Schedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 COSAWS-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 Schedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 COSAWS-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 Schedule Activity Activity Para Snapshot By Time Offset Task 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 Schedule Activity Activity Para Snapshot By Time Offset Task 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 COSAWS-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.
MpsScheduleActivityActivityParaSnapshotByTimeOffsetTaskOutputStorageCosOutputStorage, MpsScheduleActivityActivityParaSnapshotByTimeOffsetTaskOutputStorageCosOutputStorageArgs
- 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.
MpsScheduleActivityActivityParaSnapshotByTimeOffsetTaskOutputStorageS3OutputStorage, MpsScheduleActivityActivityParaSnapshotByTimeOffsetTaskOutputStorageS3OutputStorageArgs
- 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.
MpsScheduleActivityActivityParaSnapshotByTimeOffsetTaskWatermarkSet, MpsScheduleActivityActivityParaSnapshotByTimeOffsetTaskWatermarkSetArgs
- 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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.
MpsScheduleActivityActivityParaSnapshotByTimeOffsetTaskWatermarkSetRawParameter, MpsScheduleActivityActivityParaSnapshotByTimeOffsetTaskWatermarkSetRawParameterArgs
- 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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.
MpsScheduleActivityActivityParaSnapshotByTimeOffsetTaskWatermarkSetRawParameterImageTemplate, MpsScheduleActivityActivityParaSnapshotByTimeOffsetTaskWatermarkSetRawParameterImageTemplateArgs
- Image
Content MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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%.
MpsScheduleActivityActivityParaSnapshotByTimeOffsetTaskWatermarkSetRawParameterImageTemplateImageContent, MpsScheduleActivityActivityParaSnapshotByTimeOffsetTaskWatermarkSetRawParameterImageTemplateImageContentArgs
- 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 Schedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 Schedule Activity Activity Para Snapshot By Time Offset Task 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 Schedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 Schedule Activity Activity Para Snapshot By Time Offset Task 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 Schedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 Schedule Activity Activity Para Snapshot By Time Offset Task 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 Schedule Activity Activity Para Snapshot By Time Offset Task 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 MpsSchedule Activity Activity Para Snapshot By Time Offset Task 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 Schedule Activity Activity Para Snapshot By Time Offset Task 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 Schedule Activity Activity Para Snapshot By Time Offset Task 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 Schedule Activity Activity Para Snapshot By Time Offset Task 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 Schedule Activity Activity Para Snapshot By Time Offset Task 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.
MpsScheduleActivityActivityParaSnapshotByTimeOffsetTaskWatermarkSetRawParameterImageTemplateImageContentCosInputInfo, MpsScheduleActivityActivityParaSnapshotByTimeOffsetTaskWatermarkSetRawParameterImageTemplateImageContentCosInputInfoArgs
MpsScheduleActivityActivityParaSnapshotByTimeOffsetTaskWatermarkSetRawParameterImageTemplateImageContentS3InputInfo, MpsScheduleActivityActivityParaSnapshotByTimeOffsetTaskWatermarkSetRawParameterImageTemplateImageContentS3InputInfoArgs
- 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.
MpsScheduleActivityActivityParaSnapshotByTimeOffsetTaskWatermarkSetRawParameterImageTemplateImageContentUrlInputInfo, MpsScheduleActivityActivityParaSnapshotByTimeOffsetTaskWatermarkSetRawParameterImageTemplateImageContentUrlInputInfoArgs
- 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.
MpsScheduleActivityActivityParaTranscodeTask, MpsScheduleActivityActivityParaTranscodeTaskArgs
- 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 Schedule Activity Activity Para Transcode Task Head Tail Parameter - Opening and closing credits parametersNote: this field may return
null
, indicating that no valid value was found. - Mosaic
Sets List<MpsSchedule Activity Activity Para Transcode Task Mosaic Set> - List of blurs. Up to 10 ones can be supported.
- Object
Number MpsFormat Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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<MpsSchedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task Head Tail Parameter - Opening and closing credits parametersNote: this field may return
null
, indicating that no valid value was found. - Mosaic
Sets []MpsSchedule Activity Activity Para Transcode Task Mosaic Set - List of blurs. Up to 10 ones can be supported.
- Object
Number MpsFormat Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 []MpsSchedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task Head Tail Parameter - Opening and closing credits parametersNote: this field may return
null
, indicating that no valid value was found. - mosaic
Sets List<MpsSchedule Activity Activity Para Transcode Task Mosaic Set> - List of blurs. Up to 10 ones can be supported.
- object
Number MpsFormat Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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<MpsSchedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task Head Tail Parameter - Opening and closing credits parametersNote: this field may return
null
, indicating that no valid value was found. - mosaic
Sets MpsSchedule Activity Activity Para Transcode Task Mosaic Set[] - List of blurs. Up to 10 ones can be supported.
- object
Number MpsFormat Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task Head Tail Parameter - Opening and closing credits parametersNote: this field may return
null
, indicating that no valid value was found. - mosaic_
sets Sequence[MpsSchedule Activity Activity Para Transcode Task Mosaic Set] - List of blurs. Up to 10 ones can be supported.
- object_
number_ Mpsformat Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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[MpsSchedule Activity Activity Para Transcode Task 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.
MpsScheduleActivityActivityParaTranscodeTaskHeadTailParameter, MpsScheduleActivityActivityParaTranscodeTaskHeadTailParameterArgs
- Head
Sets List<MpsSchedule Activity Activity Para Transcode Task Head Tail Parameter Head Set> - Opening credits list.
- Tail
Sets List<MpsSchedule Activity Activity Para Transcode Task Head Tail Parameter Tail Set> - Closing credits list.
- Head
Sets []MpsSchedule Activity Activity Para Transcode Task Head Tail Parameter Head Set - Opening credits list.
- Tail
Sets []MpsSchedule Activity Activity Para Transcode Task Head Tail Parameter Tail Set - Closing credits list.
- head
Sets List<MpsSchedule Activity Activity Para Transcode Task Head Tail Parameter Head Set> - Opening credits list.
- tail
Sets List<MpsSchedule Activity Activity Para Transcode Task Head Tail Parameter Tail Set> - Closing credits list.
- head
Sets MpsSchedule Activity Activity Para Transcode Task Head Tail Parameter Head Set[] - Opening credits list.
- tail
Sets MpsSchedule Activity Activity Para Transcode Task Head Tail Parameter Tail Set[] - Closing credits list.
- head_
sets Sequence[MpsSchedule Activity Activity Para Transcode Task Head Tail Parameter Head Set] - Opening credits list.
- tail_
sets Sequence[MpsSchedule Activity Activity Para Transcode Task Head Tail Parameter Tail Set] - Closing credits list.
- head
Sets List<Property Map> - Opening credits list.
- tail
Sets List<Property Map> - Closing credits list.
MpsScheduleActivityActivityParaTranscodeTaskHeadTailParameterHeadSet, MpsScheduleActivityActivityParaTranscodeTaskHeadTailParameterHeadSetArgs
- 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 Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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.
MpsScheduleActivityActivityParaTranscodeTaskHeadTailParameterHeadSetCosInputInfo, MpsScheduleActivityActivityParaTranscodeTaskHeadTailParameterHeadSetCosInputInfoArgs
MpsScheduleActivityActivityParaTranscodeTaskHeadTailParameterHeadSetS3InputInfo, MpsScheduleActivityActivityParaTranscodeTaskHeadTailParameterHeadSetS3InputInfoArgs
- 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.
MpsScheduleActivityActivityParaTranscodeTaskHeadTailParameterHeadSetUrlInputInfo, MpsScheduleActivityActivityParaTranscodeTaskHeadTailParameterHeadSetUrlInputInfoArgs
- 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.
MpsScheduleActivityActivityParaTranscodeTaskHeadTailParameterTailSet, MpsScheduleActivityActivityParaTranscodeTaskHeadTailParameterTailSetArgs
- 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 Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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.
MpsScheduleActivityActivityParaTranscodeTaskHeadTailParameterTailSetCosInputInfo, MpsScheduleActivityActivityParaTranscodeTaskHeadTailParameterTailSetCosInputInfoArgs
MpsScheduleActivityActivityParaTranscodeTaskHeadTailParameterTailSetS3InputInfo, MpsScheduleActivityActivityParaTranscodeTaskHeadTailParameterTailSetS3InputInfoArgs
- 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.
MpsScheduleActivityActivityParaTranscodeTaskHeadTailParameterTailSetUrlInputInfo, MpsScheduleActivityActivityParaTranscodeTaskHeadTailParameterTailSetUrlInputInfoArgs
- 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.
MpsScheduleActivityActivityParaTranscodeTaskMosaicSet, MpsScheduleActivityActivityParaTranscodeTaskMosaicSetArgs
- 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.
MpsScheduleActivityActivityParaTranscodeTaskObjectNumberFormat, MpsScheduleActivityActivityParaTranscodeTaskObjectNumberFormatArgs
- 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.
MpsScheduleActivityActivityParaTranscodeTaskOutputStorage, MpsScheduleActivityActivityParaTranscodeTaskOutputStorageArgs
- Type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COSAWS-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 Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 COSAWS-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 Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 COSAWS-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 Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 COSAWS-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 Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 COSAWS-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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 COSAWS-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.
MpsScheduleActivityActivityParaTranscodeTaskOutputStorageCosOutputStorage, MpsScheduleActivityActivityParaTranscodeTaskOutputStorageCosOutputStorageArgs
- 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.
MpsScheduleActivityActivityParaTranscodeTaskOutputStorageS3OutputStorage, MpsScheduleActivityActivityParaTranscodeTaskOutputStorageS3OutputStorageArgs
- 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.
MpsScheduleActivityActivityParaTranscodeTaskOverrideParameter, MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterArgs
- Add
On List<MpsSubtitles Schedule Activity Activity Para Transcode Task Override Parameter Add On Subtitle> - Subtitle files to insert.Note: This field may return null, indicating that no valid value can be obtained.
- Addon
Audio List<MpsStreams Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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: retain 1: remove.
- Remove
Video double - Whether to remove video data. Valid values: 0: retain 1: remove.
- Std
Ext stringInfo - Transcoding extension field.Note: This field may return null, indicating that no valid value can be obtained.
- Subtitle
Template MpsSchedule Activity Activity Para Transcode Task Override Parameter Subtitle Template - The subtitle settings.
- Tehd
Config MpsSchedule Activity Activity Para Transcode Task Override Parameter Tehd Config - TESHD transcoding parameter.
- Video
Template MpsSchedule Activity Activity Para Transcode Task Override Parameter Video Template - Video stream configuration parameter.
- Add
On []MpsSubtitles Schedule Activity Activity Para Transcode Task Override Parameter Add On Subtitle - Subtitle files to insert.Note: This field may return null, indicating that no valid value can be obtained.
- Addon
Audio []MpsStreams Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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: retain 1: remove.
- Remove
Video float64 - Whether to remove video data. Valid values: 0: retain 1: remove.
- Std
Ext stringInfo - Transcoding extension field.Note: This field may return null, indicating that no valid value can be obtained.
- Subtitle
Template MpsSchedule Activity Activity Para Transcode Task Override Parameter Subtitle Template - The subtitle settings.
- Tehd
Config MpsSchedule Activity Activity Para Transcode Task Override Parameter Tehd Config - TESHD transcoding parameter.
- Video
Template MpsSchedule Activity Activity Para Transcode Task Override Parameter Video Template - Video stream configuration parameter.
- add
On List<MpsSubtitles Schedule Activity Activity Para Transcode Task Override Parameter Add On Subtitle> - Subtitle files to insert.Note: This field may return null, indicating that no valid value can be obtained.
- addon
Audio List<MpsStreams Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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: retain 1: remove.
- remove
Video Double - Whether to remove video data. Valid values: 0: retain 1: remove.
- std
Ext StringInfo - Transcoding extension field.Note: This field may return null, indicating that no valid value can be obtained.
- subtitle
Template MpsSchedule Activity Activity Para Transcode Task Override Parameter Subtitle Template - The subtitle settings.
- tehd
Config MpsSchedule Activity Activity Para Transcode Task Override Parameter Tehd Config - TESHD transcoding parameter.
- video
Template MpsSchedule Activity Activity Para Transcode Task Override Parameter Video Template - Video stream configuration parameter.
- add
On MpsSubtitles Schedule Activity Activity Para Transcode Task Override Parameter Add On Subtitle[] - Subtitle files to insert.Note: This field may return null, indicating that no valid value can be obtained.
- addon
Audio MpsStreams Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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: retain 1: remove.
- remove
Video number - Whether to remove video data. Valid values: 0: retain 1: remove.
- std
Ext stringInfo - Transcoding extension field.Note: This field may return null, indicating that no valid value can be obtained.
- subtitle
Template MpsSchedule Activity Activity Para Transcode Task Override Parameter Subtitle Template - The subtitle settings.
- tehd
Config MpsSchedule Activity Activity Para Transcode Task Override Parameter Tehd Config - TESHD transcoding parameter.
- video
Template MpsSchedule Activity Activity Para Transcode Task Override Parameter Video Template - Video stream configuration parameter.
- add_
on_ Sequence[Mpssubtitles Schedule Activity Activity Para Transcode Task Override Parameter Add On Subtitle] - Subtitle files to insert.Note: This field may return null, indicating that no valid value can be obtained.
- addon_
audio_ Sequence[Mpsstreams Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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: retain 1: remove.
- remove_
video float - Whether to remove video data. Valid values: 0: retain 1: remove.
- std_
ext_ strinfo - Transcoding extension field.Note: This field may return null, indicating that no valid value can be obtained.
- subtitle_
template MpsSchedule Activity Activity Para Transcode Task Override Parameter Subtitle Template - The subtitle settings.
- tehd_
config MpsSchedule Activity Activity Para Transcode Task Override Parameter Tehd Config - TESHD transcoding parameter.
- video_
template MpsSchedule Activity Activity Para Transcode Task Override Parameter Video Template - Video stream configuration parameter.
- add
On List<Property Map>Subtitles - Subtitle files to insert.Note: This field may return null, indicating that no valid value 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: retain 1: remove.
- remove
Video Number - Whether to remove video data. Valid values: 0: retain 1: remove.
- std
Ext StringInfo - Transcoding extension field.Note: This field may return null, indicating that no valid value can be obtained.
- subtitle
Template Property Map - The subtitle settings.
- tehd
Config Property Map - TESHD transcoding parameter.
- video
Template Property Map - Video stream configuration parameter.
MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterAddOnSubtitle, MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterAddOnSubtitleArgs
- Subtitle
Mps
Schedule Activity Activity Para Transcode Task Override Parameter Add On Subtitle Subtitle - Subtitle file.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.
- Subtitle
Mps
Schedule Activity Activity Para Transcode Task Override Parameter Add On Subtitle Subtitle - Subtitle file.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.
- subtitle
Mps
Schedule Activity Activity Para Transcode Task Override Parameter Add On Subtitle Subtitle - Subtitle file.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.
- subtitle
Mps
Schedule Activity Activity Para Transcode Task Override Parameter Add On Subtitle Subtitle - Subtitle file.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.
- subtitle
Mps
Schedule Activity Activity Para Transcode Task Override Parameter Add On Subtitle Subtitle - Subtitle file.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.
- subtitle Property Map
- Subtitle file.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.
MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterAddOnSubtitleSubtitle, MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterAddOnSubtitleSubtitleArgs
- 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 Schedule Activity Activity Para Transcode Task 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 is COS.
- S3Input
Info MpsSchedule Activity Activity Para Transcode Task Override Parameter Add On Subtitle Subtitle S3Input Info - The information of the AWS S3 object processed. This parameter is required if Type is AWS-S3.Note: This field may return null, indicating that no valid value can be obtained.
- Url
Input MpsInfo Schedule Activity Activity Para Transcode Task Override Parameter Add On Subtitle Subtitle Url Input Info - The URL of the object to process. This parameter is valid and required when Type is URL.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 Schedule Activity Activity Para Transcode Task 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 is COS.
- S3Input
Info MpsSchedule Activity Activity Para Transcode Task Override Parameter Add On Subtitle Subtitle S3Input Info - The information of the AWS S3 object processed. This parameter is required if Type is AWS-S3.Note: This field may return null, indicating that no valid value can be obtained.
- Url
Input MpsInfo Schedule Activity Activity Para Transcode Task Override Parameter Add On Subtitle Subtitle Url Input Info - The URL of the object to process. This parameter is valid and required when Type is URL.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 Schedule Activity Activity Para Transcode Task 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 is COS.
- s3Input
Info MpsSchedule Activity Activity Para Transcode Task Override Parameter Add On Subtitle Subtitle S3Input Info - The information of the AWS S3 object processed. This parameter is required if Type is AWS-S3.Note: This field may return null, indicating that no valid value can be obtained.
- url
Input MpsInfo Schedule Activity Activity Para Transcode Task Override Parameter Add On Subtitle Subtitle Url Input Info - The URL of the object to process. This parameter is valid and required when Type is URL.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 Schedule Activity Activity Para Transcode Task 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 is COS.
- s3Input
Info MpsSchedule Activity Activity Para Transcode Task Override Parameter Add On Subtitle Subtitle S3Input Info - The information of the AWS S3 object processed. This parameter is required if Type is AWS-S3.Note: This field may return null, indicating that no valid value can be obtained.
- url
Input MpsInfo Schedule Activity Activity Para Transcode Task Override Parameter Add On Subtitle Subtitle Url Input Info - The URL of the object to process. This parameter is valid and required when Type is URL.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 Schedule Activity Activity Para Transcode Task 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 is COS.
- s3_
input_ Mpsinfo Schedule Activity Activity Para Transcode Task Override Parameter Add On Subtitle Subtitle S3Input Info - The information of the AWS S3 object processed. This parameter is required if Type is AWS-S3.Note: This field may return null, indicating that no valid value can be obtained.
- url_
input_ Mpsinfo Schedule Activity Activity Para Transcode Task Override Parameter Add On Subtitle Subtitle Url Input Info - The URL of the object to process. This parameter is valid and required when Type is URL.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 is COS.
- s3Input
Info Property Map - The information of the AWS S3 object processed. This parameter is required if Type is AWS-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 is URL.Note: This field may return null, indicating that no valid value can be obtained.
MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterAddOnSubtitleSubtitleCosInputInfo, MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterAddOnSubtitleSubtitleCosInputInfoArgs
MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterAddOnSubtitleSubtitleS3InputInfo, MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterAddOnSubtitleSubtitleS3InputInfoArgs
- 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.
MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterAddOnSubtitleSubtitleUrlInputInfo, MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterAddOnSubtitleSubtitleUrlInputInfoArgs
- 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.
MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterAddonAudioStream, MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterAddonAudioStreamArgs
- 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 Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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.
MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterAddonAudioStreamCosInputInfo, MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterAddonAudioStreamCosInputInfoArgs
MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterAddonAudioStreamS3InputInfo, MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterAddonAudioStreamS3InputInfoArgs
- 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.
MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterAddonAudioStreamUrlInputInfo, MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterAddonAudioStreamUrlInputInfoArgs
- 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.
MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterAudioTemplate, MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterAudioTemplateArgs
- Audio
Channel double - Audio channel system. Valid values: 1: Mono 2: Dual 6: 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,000 44,100 48,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: Mono 2: Dual 6: 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,000 44,100 48,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: Mono 2: Dual 6: 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,000 44,100 48,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: Mono 2: Dual 6: 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,000 44,100 48,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: Mono 2: Dual 6: 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,000 44,100 48,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: Mono 2: Dual 6: 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,000 44,100 48,000In Hz.
- stream
Selects List<Number> - The audio tracks to retain. All audio tracks are retained by default.
MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterSubtitleTemplate, MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterSubtitleTemplateArgs
- Font
Alpha double - The text transparency. Value range: 0-1. 0: Completely transparent 1: Completely opaqueDefault value: 1.
- Font
Color string - The font color in 0xRRGGBB format. Default value: 0xFFFFFF (white).
- Font
Size string - The font size (pixels). If this is not specified, the font size in the subtitle file will be used.
- Font
Type string - The font type. Valid values:
hei.ttf
song.ttf
simkai.ttf
arial.ttf
(for English only). The default ishei.ttf
. - Path string
- The URL of the subtitles to add to the video.
- 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.
- Font
Alpha float64 - The text transparency. Value range: 0-1. 0: Completely transparent 1: Completely opaqueDefault value: 1.
- Font
Color string - The font color in 0xRRGGBB format. Default value: 0xFFFFFF (white).
- Font
Size string - The font size (pixels). If this is not specified, the font size in the subtitle file will be used.
- Font
Type string - The font type. Valid values:
hei.ttf
song.ttf
simkai.ttf
arial.ttf
(for English only). The default ishei.ttf
. - Path string
- The URL of the subtitles to add to the video.
- 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.
- font
Alpha Double - The text transparency. Value range: 0-1. 0: Completely transparent 1: Completely opaqueDefault value: 1.
- font
Color String - The font color in 0xRRGGBB format. Default value: 0xFFFFFF (white).
- font
Size String - The font size (pixels). If this is not specified, the font size in the subtitle file will be used.
- font
Type String - The font type. Valid values:
hei.ttf
song.ttf
simkai.ttf
arial.ttf
(for English only). The default ishei.ttf
. - path String
- The URL of the subtitles to add to the video.
- 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.
- font
Alpha number - The text transparency. Value range: 0-1. 0: Completely transparent 1: Completely opaqueDefault value: 1.
- font
Color string - The font color in 0xRRGGBB format. Default value: 0xFFFFFF (white).
- font
Size string - The font size (pixels). If this is not specified, the font size in the subtitle file will be used.
- font
Type string - The font type. Valid values:
hei.ttf
song.ttf
simkai.ttf
arial.ttf
(for English only). The default ishei.ttf
. - path string
- The URL of the subtitles to add to the video.
- 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.
- font_
alpha float - The text transparency. Value range: 0-1. 0: Completely transparent 1: Completely opaqueDefault value: 1.
- font_
color str - The font color in 0xRRGGBB format. Default value: 0xFFFFFF (white).
- font_
size str - The font size (pixels). If this is not specified, the font size in the subtitle file will be used.
- font_
type str - The font type. Valid values:
hei.ttf
song.ttf
simkai.ttf
arial.ttf
(for English only). The default ishei.ttf
. - path str
- The URL of the subtitles to add to the video.
- 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.
- font
Alpha Number - The text transparency. Value range: 0-1. 0: Completely transparent 1: Completely opaqueDefault value: 1.
- font
Color String - The font color in 0xRRGGBB format. Default value: 0xFFFFFF (white).
- font
Size String - The font size (pixels). If this is not specified, the font size in the subtitle file will be used.
- font
Type String - The font type. Valid values:
hei.ttf
song.ttf
simkai.ttf
arial.ttf
(for English only). The default ishei.ttf
. - path String
- The URL of the subtitles to add to the video.
- 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.
MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterTehdConfig, MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterTehdConfigArgs
- 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.
MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterVideoTemplate, MpsScheduleActivityActivityParaTranscodeTaskOverrideParameterVideoTemplateArgs
- 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: Disable 1: 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: Disable 1: 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: Disable 1: 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: Disable 1: 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: Disable 1: 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: Disable 1: 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.
MpsScheduleActivityActivityParaTranscodeTaskRawParameter, MpsScheduleActivityActivityParaTranscodeTaskRawParameterArgs
- 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task Raw Parameter Tehd Config - TESHD transcoding parameter.
- Video
Template MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task Raw Parameter Tehd Config - TESHD transcoding parameter.
- Video
Template MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task Raw Parameter Tehd Config - TESHD transcoding parameter.
- video
Template MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task Raw Parameter Tehd Config - TESHD transcoding parameter.
- video
Template MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task Raw Parameter Tehd Config - TESHD transcoding parameter.
- video_
template MpsSchedule Activity Activity Para Transcode Task 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.
MpsScheduleActivityActivityParaTranscodeTaskRawParameterAudioTemplate, MpsScheduleActivityActivityParaTranscodeTaskRawParameterAudioTemplateArgs
- 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,000 44,100 48,000In Hz.
- Audio
Channel double - Audio channel system. Valid values: 1: Mono 2: Dual 6: 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,000 44,100 48,000In Hz.
- Audio
Channel float64 - Audio channel system. Valid values: 1: Mono 2: Dual 6: 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,000 44,100 48,000In Hz.
- audio
Channel Double - Audio channel system. Valid values: 1: Mono 2: Dual 6: 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,000 44,100 48,000In Hz.
- audio
Channel number - Audio channel system. Valid values: 1: Mono 2: Dual 6: 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,000 44,100 48,000In Hz.
- audio_
channel float - Audio channel system. Valid values: 1: Mono 2: Dual 6: 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,000 44,100 48,000In Hz.
- audio
Channel Number - Audio channel system. Valid values: 1: Mono 2: Dual 6: StereoWhen the media is packaged in audio format (FLAC, OGG, MP3, M4A), the sound channel cannot be set to stereo.Default value: 2.
MpsScheduleActivityActivityParaTranscodeTaskRawParameterTehdConfig, MpsScheduleActivityActivityParaTranscodeTaskRawParameterTehdConfigArgs
- 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.
MpsScheduleActivityActivityParaTranscodeTaskRawParameterVideoTemplate, MpsScheduleActivityActivityParaTranscodeTaskRawParameterVideoTemplateArgs
- 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.
MpsScheduleActivityActivityParaTranscodeTaskWatermarkSet, MpsScheduleActivityActivityParaTranscodeTaskWatermarkSetArgs
- 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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.
MpsScheduleActivityActivityParaTranscodeTaskWatermarkSetRawParameter, MpsScheduleActivityActivityParaTranscodeTaskWatermarkSetRawParameterArgs
- 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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.
MpsScheduleActivityActivityParaTranscodeTaskWatermarkSetRawParameterImageTemplate, MpsScheduleActivityActivityParaTranscodeTaskWatermarkSetRawParameterImageTemplateArgs
- Image
Content MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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%.
MpsScheduleActivityActivityParaTranscodeTaskWatermarkSetRawParameterImageTemplateImageContent, MpsScheduleActivityActivityParaTranscodeTaskWatermarkSetRawParameterImageTemplateImageContentArgs
- 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 Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 MpsSchedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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 Schedule Activity Activity Para Transcode Task 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.
MpsScheduleActivityActivityParaTranscodeTaskWatermarkSetRawParameterImageTemplateImageContentCosInputInfo, MpsScheduleActivityActivityParaTranscodeTaskWatermarkSetRawParameterImageTemplateImageContentCosInputInfoArgs
MpsScheduleActivityActivityParaTranscodeTaskWatermarkSetRawParameterImageTemplateImageContentS3InputInfo, MpsScheduleActivityActivityParaTranscodeTaskWatermarkSetRawParameterImageTemplateImageContentS3InputInfoArgs
- 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.
MpsScheduleActivityActivityParaTranscodeTaskWatermarkSetRawParameterImageTemplateImageContentUrlInputInfo, MpsScheduleActivityActivityParaTranscodeTaskWatermarkSetRawParameterImageTemplateImageContentUrlInputInfoArgs
- 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.
MpsScheduleOutputStorage, MpsScheduleOutputStorageArgs
- Type string
- The storage type for a media processing output file. Valid values:
COS
: Tencent Cloud COSAWS-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 Schedule 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 MpsSchedule 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 COSAWS-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 Schedule 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 MpsSchedule 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 COSAWS-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 Schedule 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 MpsSchedule 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 COSAWS-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 Schedule 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 MpsSchedule 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 COSAWS-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 Schedule 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 Schedule 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 COSAWS-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.
MpsScheduleOutputStorageCosOutputStorage, MpsScheduleOutputStorageCosOutputStorageArgs
- 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.
MpsScheduleOutputStorageS3OutputStorage, MpsScheduleOutputStorageS3OutputStorageArgs
- 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.
MpsScheduleTaskNotifyConfig, MpsScheduleTaskNotifyConfigArgs
- Aws
Sqs MpsSchedule Task Notify Config Aws Sqs - 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.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. - 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
Sqs MpsSchedule Task Notify Config Aws Sqs - 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.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. - 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
Sqs MpsSchedule Task Notify Config Aws Sqs - 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.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. - 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
Sqs MpsSchedule Task Notify Config Aws Sqs - 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.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. - 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_
sqs MpsSchedule Task Notify Config Aws Sqs - 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.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. - 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
Sqs 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.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. - 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
.
MpsScheduleTaskNotifyConfigAwsSqs, MpsScheduleTaskNotifyConfigAwsSqsArgs
- Sqs
Queue stringName - The name of the SQS queue.
- Sqs
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.
- Sqs
Queue stringName - The name of the SQS queue.
- Sqs
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.
- sqs
Queue StringName - The name of the SQS queue.
- sqs
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.
- sqs
Queue stringName - The name of the SQS queue.
- sqs
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.
- sqs_
queue_ strname - The name of the SQS queue.
- sqs_
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.
- sqs
Queue StringName - The name of the SQS queue.
- sqs
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.
MpsScheduleTrigger, MpsScheduleTriggerArgs
- Type string
- The trigger type. Valid values:
CosFileUpload
: Tencent Cloud COS trigger.AwsS3FileUpload
: AWS S3 trigger. Currently, this type is only supported for transcoding tasks and schemes (not supported for workflows). - Aws
S3File MpsUpload Trigger Schedule Trigger Aws S3File Upload Trigger - The AWS S3 trigger. This parameter is valid and required if
Type
isAwsS3FileUpload
.Note: Currently, the key for the AWS S3 bucket, the trigger SQS queue, and the callback SQS queue must be the same.Note: This field may return null, indicating that no valid values can be obtained. - Cos
File MpsUpload Trigger Schedule Trigger Cos File Upload Trigger - This parameter is required and valid when
Type
isCosFileUpload
, indicating the COS trigger rule.Note: This field may return null, indicating that no valid values can be obtained.
- Type string
- The trigger type. Valid values:
CosFileUpload
: Tencent Cloud COS trigger.AwsS3FileUpload
: AWS S3 trigger. Currently, this type is only supported for transcoding tasks and schemes (not supported for workflows). - Aws
S3File MpsUpload Trigger Schedule Trigger Aws S3File Upload Trigger - The AWS S3 trigger. This parameter is valid and required if
Type
isAwsS3FileUpload
.Note: Currently, the key for the AWS S3 bucket, the trigger SQS queue, and the callback SQS queue must be the same.Note: This field may return null, indicating that no valid values can be obtained. - Cos
File MpsUpload Trigger Schedule Trigger Cos File Upload Trigger - This parameter is required and valid when
Type
isCosFileUpload
, indicating the COS trigger rule.Note: This field may return null, indicating that no valid values can be obtained.
- type String
- The trigger type. Valid values:
CosFileUpload
: Tencent Cloud COS trigger.AwsS3FileUpload
: AWS S3 trigger. Currently, this type is only supported for transcoding tasks and schemes (not supported for workflows). - aws
S3File MpsUpload Trigger Schedule Trigger Aws S3File Upload Trigger - The AWS S3 trigger. This parameter is valid and required if
Type
isAwsS3FileUpload
.Note: Currently, the key for the AWS S3 bucket, the trigger SQS queue, and the callback SQS queue must be the same.Note: This field may return null, indicating that no valid values can be obtained. - cos
File MpsUpload Trigger Schedule Trigger Cos File Upload Trigger - This parameter is required and valid when
Type
isCosFileUpload
, indicating the COS trigger rule.Note: This field may return null, indicating that no valid values can be obtained.
- type string
- The trigger type. Valid values:
CosFileUpload
: Tencent Cloud COS trigger.AwsS3FileUpload
: AWS S3 trigger. Currently, this type is only supported for transcoding tasks and schemes (not supported for workflows). - aws
S3File MpsUpload Trigger Schedule Trigger Aws S3File Upload Trigger - The AWS S3 trigger. This parameter is valid and required if
Type
isAwsS3FileUpload
.Note: Currently, the key for the AWS S3 bucket, the trigger SQS queue, and the callback SQS queue must be the same.Note: This field may return null, indicating that no valid values can be obtained. - cos
File MpsUpload Trigger Schedule Trigger Cos File Upload Trigger - This parameter is required and valid when
Type
isCosFileUpload
, indicating the COS trigger rule.Note: This field may return null, indicating that no valid values can be obtained.
- type str
- The trigger type. Valid values:
CosFileUpload
: Tencent Cloud COS trigger.AwsS3FileUpload
: AWS S3 trigger. Currently, this type is only supported for transcoding tasks and schemes (not supported for workflows). - aws_
s3_ Mpsfile_ upload_ trigger Schedule Trigger Aws S3File Upload Trigger - The AWS S3 trigger. This parameter is valid and required if
Type
isAwsS3FileUpload
.Note: Currently, the key for the AWS S3 bucket, the trigger SQS queue, and the callback SQS queue must be the same.Note: This field may return null, indicating that no valid values can be obtained. - cos_
file_ Mpsupload_ trigger Schedule Trigger Cos File Upload Trigger - This parameter is required and valid when
Type
isCosFileUpload
, indicating the COS trigger rule.Note: This field may return null, indicating that no valid values can be obtained.
- type String
- The trigger type. Valid values:
CosFileUpload
: Tencent Cloud COS trigger.AwsS3FileUpload
: AWS S3 trigger. Currently, this type is only supported for transcoding tasks and schemes (not supported for workflows). - aws
S3File Property MapUpload Trigger - The AWS S3 trigger. This parameter is valid and required if
Type
isAwsS3FileUpload
.Note: Currently, the key for the AWS S3 bucket, the trigger SQS queue, and the callback SQS queue must be the same.Note: This field may return null, indicating that no valid values can be obtained. - cos
File Property MapUpload Trigger - This parameter is required and valid when
Type
isCosFileUpload
, indicating the COS trigger rule.Note: This field may return null, indicating that no valid values can be obtained.
MpsScheduleTriggerAwsS3FileUploadTrigger, MpsScheduleTriggerAwsS3FileUploadTriggerArgs
- S3Bucket string
- The AWS S3 bucket bound to the scheme.
- S3Region string
- The region of the AWS S3 bucket.
- Aws
Sqs MpsSchedule Trigger Aws S3File Upload Trigger Aws Sqs - The SQS queue of the AWS S3 bucket.Note: The queue must be in the same region as the bucket.Note: This field may return null, indicating that no valid values can be obtained.
- Dir string
- The bucket directory bound. It must be an absolute path that starts and ends with
/
, such as/movie/201907/
. If you do not specify this, the root directory will be bound. . - Formats List<string>
- The file formats that will trigger the scheme, such as [mp4, flv, mov]. If you do not specify this, the upload of files in any format will trigger the scheme. .
- 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.
- S3Bucket string
- The AWS S3 bucket bound to the scheme.
- S3Region string
- The region of the AWS S3 bucket.
- Aws
Sqs MpsSchedule Trigger Aws S3File Upload Trigger Aws Sqs - The SQS queue of the AWS S3 bucket.Note: The queue must be in the same region as the bucket.Note: This field may return null, indicating that no valid values can be obtained.
- Dir string
- The bucket directory bound. It must be an absolute path that starts and ends with
/
, such as/movie/201907/
. If you do not specify this, the root directory will be bound. . - Formats []string
- The file formats that will trigger the scheme, such as [mp4, flv, mov]. If you do not specify this, the upload of files in any format will trigger the scheme. .
- 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.
- s3Bucket String
- The AWS S3 bucket bound to the scheme.
- s3Region String
- The region of the AWS S3 bucket.
- aws
Sqs MpsSchedule Trigger Aws S3File Upload Trigger Aws Sqs - The SQS queue of the AWS S3 bucket.Note: The queue must be in the same region as the bucket.Note: This field may return null, indicating that no valid values can be obtained.
- dir String
- The bucket directory bound. It must be an absolute path that starts and ends with
/
, such as/movie/201907/
. If you do not specify this, the root directory will be bound. . - formats List<String>
- The file formats that will trigger the scheme, such as [mp4, flv, mov]. If you do not specify this, the upload of files in any format will trigger the scheme. .
- 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.
- s3Bucket string
- The AWS S3 bucket bound to the scheme.
- s3Region string
- The region of the AWS S3 bucket.
- aws
Sqs MpsSchedule Trigger Aws S3File Upload Trigger Aws Sqs - The SQS queue of the AWS S3 bucket.Note: The queue must be in the same region as the bucket.Note: This field may return null, indicating that no valid values can be obtained.
- dir string
- The bucket directory bound. It must be an absolute path that starts and ends with
/
, such as/movie/201907/
. If you do not specify this, the root directory will be bound. . - formats string[]
- The file formats that will trigger the scheme, such as [mp4, flv, mov]. If you do not specify this, the upload of files in any format will trigger the scheme. .
- 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.
- s3_
bucket str - The AWS S3 bucket bound to the scheme.
- s3_
region str - The region of the AWS S3 bucket.
- aws_
sqs MpsSchedule Trigger Aws S3File Upload Trigger Aws Sqs - The SQS queue of the AWS S3 bucket.Note: The queue must be in the same region as the bucket.Note: This field may return null, indicating that no valid values can be obtained.
- dir str
- The bucket directory bound. It must be an absolute path that starts and ends with
/
, such as/movie/201907/
. If you do not specify this, the root directory will be bound. . - formats Sequence[str]
- The file formats that will trigger the scheme, such as [mp4, flv, mov]. If you do not specify this, the upload of files in any format will trigger the scheme. .
- 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.
- s3Bucket String
- The AWS S3 bucket bound to the scheme.
- s3Region String
- The region of the AWS S3 bucket.
- aws
Sqs Property Map - The SQS queue of the AWS S3 bucket.Note: The queue must be in the same region as the bucket.Note: This field may return null, indicating that no valid values can be obtained.
- dir String
- The bucket directory bound. It must be an absolute path that starts and ends with
/
, such as/movie/201907/
. If you do not specify this, the root directory will be bound. . - formats List<String>
- The file formats that will trigger the scheme, such as [mp4, flv, mov]. If you do not specify this, the upload of files in any format will trigger the scheme. .
- 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.
MpsScheduleTriggerAwsS3FileUploadTriggerAwsSqs, MpsScheduleTriggerAwsS3FileUploadTriggerAwsSqsArgs
- Sqs
Queue stringName - The name of the SQS queue.
- Sqs
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.
- Sqs
Queue stringName - The name of the SQS queue.
- Sqs
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.
- sqs
Queue StringName - The name of the SQS queue.
- sqs
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.
- sqs
Queue stringName - The name of the SQS queue.
- sqs
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.
- sqs_
queue_ strname - The name of the SQS queue.
- sqs_
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.
- sqs
Queue StringName - The name of the SQS queue.
- sqs
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.
MpsScheduleTriggerCosFileUploadTrigger, MpsScheduleTriggerCosFileUploadTriggerArgs
- Bucket string
- Name of the COS bucket bound to a workflow, such as
TopRankVideo-125xxx88
. - Region string
- Region of the COS bucket bound to a workflow, such as
ap-chongiqng
. - Dir string
- Input path directory bound to a workflow, such as
/movie/201907/
. If this parameter is left empty, the/
root directory will be used. - Formats List<string>
- Format list of files that can trigger a workflow, such as [mp4, flv, mov]. If this parameter is left empty, files in all formats can trigger the workflow.
- Bucket string
- Name of the COS bucket bound to a workflow, such as
TopRankVideo-125xxx88
. - Region string
- Region of the COS bucket bound to a workflow, such as
ap-chongiqng
. - Dir string
- Input path directory bound to a workflow, such as
/movie/201907/
. If this parameter is left empty, the/
root directory will be used. - Formats []string
- Format list of files that can trigger a workflow, such as [mp4, flv, mov]. If this parameter is left empty, files in all formats can trigger the workflow.
- bucket String
- Name of the COS bucket bound to a workflow, such as
TopRankVideo-125xxx88
. - region String
- Region of the COS bucket bound to a workflow, such as
ap-chongiqng
. - dir String
- Input path directory bound to a workflow, such as
/movie/201907/
. If this parameter is left empty, the/
root directory will be used. - formats List<String>
- Format list of files that can trigger a workflow, such as [mp4, flv, mov]. If this parameter is left empty, files in all formats can trigger the workflow.
- bucket string
- Name of the COS bucket bound to a workflow, such as
TopRankVideo-125xxx88
. - region string
- Region of the COS bucket bound to a workflow, such as
ap-chongiqng
. - dir string
- Input path directory bound to a workflow, such as
/movie/201907/
. If this parameter is left empty, the/
root directory will be used. - formats string[]
- Format list of files that can trigger a workflow, such as [mp4, flv, mov]. If this parameter is left empty, files in all formats can trigger the workflow.
- bucket str
- Name of the COS bucket bound to a workflow, such as
TopRankVideo-125xxx88
. - region str
- Region of the COS bucket bound to a workflow, such as
ap-chongiqng
. - dir str
- Input path directory bound to a workflow, such as
/movie/201907/
. If this parameter is left empty, the/
root directory will be used. - formats Sequence[str]
- Format list of files that can trigger a workflow, such as [mp4, flv, mov]. If this parameter is left empty, files in all formats can trigger the workflow.
- bucket String
- Name of the COS bucket bound to a workflow, such as
TopRankVideo-125xxx88
. - region String
- Region of the COS bucket bound to a workflow, such as
ap-chongiqng
. - dir String
- Input path directory bound to a workflow, such as
/movie/201907/
. If this parameter is left empty, the/
root directory will be used. - formats List<String>
- Format list of files that can trigger a workflow, such as [mp4, flv, mov]. If this parameter is left empty, files in all formats can trigger the workflow.
Import
mps schedule can be imported using the id, e.g.
$ pulumi import tencentcloud:index/mpsSchedule:MpsSchedule schedule schedule_id
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloud
Terraform Provider.