1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. getVodProcedureTemplates
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

tencentcloud.getVodProcedureTemplates

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

    Use this data source to query detailed information of VOD procedure templates.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const fooVodProcedureTemplate = new tencentcloud.VodProcedureTemplate("fooVodProcedureTemplate", {
        comment: "test",
        mediaProcessTask: {
            adaptiveDynamicStreamingTaskLists: [{
                definition: tencentcloud_vod_adaptive_dynamic_streaming_template.foo.id,
            }],
            snapshotByTimeOffsetTaskLists: [{
                definition: tencentcloud_vod_snapshot_by_time_offset_template.foo.id,
                extTimeOffsetLists: ["3.5s"],
            }],
            imageSpriteTaskLists: [{
                definition: tencentcloud_vod_image_sprite_template.foo.id,
            }],
        },
    });
    const fooVodProcedureTemplates = tencentcloud.getVodProcedureTemplatesOutput({
        type: "Custom",
        name: fooVodProcedureTemplate.vodProcedureTemplateId,
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    foo_vod_procedure_template = tencentcloud.VodProcedureTemplate("fooVodProcedureTemplate",
        comment="test",
        media_process_task={
            "adaptive_dynamic_streaming_task_lists": [{
                "definition": tencentcloud_vod_adaptive_dynamic_streaming_template["foo"]["id"],
            }],
            "snapshot_by_time_offset_task_lists": [{
                "definition": tencentcloud_vod_snapshot_by_time_offset_template["foo"]["id"],
                "ext_time_offset_lists": ["3.5s"],
            }],
            "image_sprite_task_lists": [{
                "definition": tencentcloud_vod_image_sprite_template["foo"]["id"],
            }],
        })
    foo_vod_procedure_templates = tencentcloud.get_vod_procedure_templates_output(type="Custom",
        name=foo_vod_procedure_template.vod_procedure_template_id)
    
    package main
    
    import (
    	"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 {
    		fooVodProcedureTemplate, err := tencentcloud.NewVodProcedureTemplate(ctx, "fooVodProcedureTemplate", &tencentcloud.VodProcedureTemplateArgs{
    			Comment: pulumi.String("test"),
    			MediaProcessTask: &tencentcloud.VodProcedureTemplateMediaProcessTaskArgs{
    				AdaptiveDynamicStreamingTaskLists: tencentcloud.VodProcedureTemplateMediaProcessTaskAdaptiveDynamicStreamingTaskListArray{
    					&tencentcloud.VodProcedureTemplateMediaProcessTaskAdaptiveDynamicStreamingTaskListArgs{
    						Definition: pulumi.Any(tencentcloud_vod_adaptive_dynamic_streaming_template.Foo.Id),
    					},
    				},
    				SnapshotByTimeOffsetTaskLists: tencentcloud.VodProcedureTemplateMediaProcessTaskSnapshotByTimeOffsetTaskListArray{
    					&tencentcloud.VodProcedureTemplateMediaProcessTaskSnapshotByTimeOffsetTaskListArgs{
    						Definition: pulumi.Any(tencentcloud_vod_snapshot_by_time_offset_template.Foo.Id),
    						ExtTimeOffsetLists: pulumi.StringArray{
    							pulumi.String("3.5s"),
    						},
    					},
    				},
    				ImageSpriteTaskLists: tencentcloud.VodProcedureTemplateMediaProcessTaskImageSpriteTaskListArray{
    					&tencentcloud.VodProcedureTemplateMediaProcessTaskImageSpriteTaskListArgs{
    						Definition: pulumi.Any(tencentcloud_vod_image_sprite_template.Foo.Id),
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_ = tencentcloud.GetVodProcedureTemplatesOutput(ctx, tencentcloud.GetVodProcedureTemplatesOutputArgs{
    			Type: pulumi.String("Custom"),
    			Name: fooVodProcedureTemplate.VodProcedureTemplateId,
    		}, nil)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var fooVodProcedureTemplate = new Tencentcloud.VodProcedureTemplate("fooVodProcedureTemplate", new()
        {
            Comment = "test",
            MediaProcessTask = new Tencentcloud.Inputs.VodProcedureTemplateMediaProcessTaskArgs
            {
                AdaptiveDynamicStreamingTaskLists = new[]
                {
                    new Tencentcloud.Inputs.VodProcedureTemplateMediaProcessTaskAdaptiveDynamicStreamingTaskListArgs
                    {
                        Definition = tencentcloud_vod_adaptive_dynamic_streaming_template.Foo.Id,
                    },
                },
                SnapshotByTimeOffsetTaskLists = new[]
                {
                    new Tencentcloud.Inputs.VodProcedureTemplateMediaProcessTaskSnapshotByTimeOffsetTaskListArgs
                    {
                        Definition = tencentcloud_vod_snapshot_by_time_offset_template.Foo.Id,
                        ExtTimeOffsetLists = new[]
                        {
                            "3.5s",
                        },
                    },
                },
                ImageSpriteTaskLists = new[]
                {
                    new Tencentcloud.Inputs.VodProcedureTemplateMediaProcessTaskImageSpriteTaskListArgs
                    {
                        Definition = tencentcloud_vod_image_sprite_template.Foo.Id,
                    },
                },
            },
        });
    
        var fooVodProcedureTemplates = Tencentcloud.GetVodProcedureTemplates.Invoke(new()
        {
            Type = "Custom",
            Name = fooVodProcedureTemplate.VodProcedureTemplateId,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.VodProcedureTemplate;
    import com.pulumi.tencentcloud.VodProcedureTemplateArgs;
    import com.pulumi.tencentcloud.inputs.VodProcedureTemplateMediaProcessTaskArgs;
    import com.pulumi.tencentcloud.TencentcloudFunctions;
    import com.pulumi.tencentcloud.inputs.GetVodProcedureTemplatesArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var fooVodProcedureTemplate = new VodProcedureTemplate("fooVodProcedureTemplate", VodProcedureTemplateArgs.builder()
                .comment("test")
                .mediaProcessTask(VodProcedureTemplateMediaProcessTaskArgs.builder()
                    .adaptiveDynamicStreamingTaskLists(VodProcedureTemplateMediaProcessTaskAdaptiveDynamicStreamingTaskListArgs.builder()
                        .definition(tencentcloud_vod_adaptive_dynamic_streaming_template.foo().id())
                        .build())
                    .snapshotByTimeOffsetTaskLists(VodProcedureTemplateMediaProcessTaskSnapshotByTimeOffsetTaskListArgs.builder()
                        .definition(tencentcloud_vod_snapshot_by_time_offset_template.foo().id())
                        .extTimeOffsetLists("3.5s")
                        .build())
                    .imageSpriteTaskLists(VodProcedureTemplateMediaProcessTaskImageSpriteTaskListArgs.builder()
                        .definition(tencentcloud_vod_image_sprite_template.foo().id())
                        .build())
                    .build())
                .build());
    
            final var fooVodProcedureTemplates = TencentcloudFunctions.getVodProcedureTemplates(GetVodProcedureTemplatesArgs.builder()
                .type("Custom")
                .name(fooVodProcedureTemplate.vodProcedureTemplateId())
                .build());
    
        }
    }
    
    resources:
      fooVodProcedureTemplate:
        type: tencentcloud:VodProcedureTemplate
        properties:
          comment: test
          mediaProcessTask:
            adaptiveDynamicStreamingTaskLists:
              - definition: ${tencentcloud_vod_adaptive_dynamic_streaming_template.foo.id}
            snapshotByTimeOffsetTaskLists:
              - definition: ${tencentcloud_vod_snapshot_by_time_offset_template.foo.id}
                extTimeOffsetLists:
                  - 3.5s
            imageSpriteTaskLists:
              - definition: ${tencentcloud_vod_image_sprite_template.foo.id}
    variables:
      fooVodProcedureTemplates:
        fn::invoke:
          function: tencentcloud:getVodProcedureTemplates
          arguments:
            type: Custom
            name: ${fooVodProcedureTemplate.vodProcedureTemplateId}
    

    Using getVodProcedureTemplates

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getVodProcedureTemplates(args: GetVodProcedureTemplatesArgs, opts?: InvokeOptions): Promise<GetVodProcedureTemplatesResult>
    function getVodProcedureTemplatesOutput(args: GetVodProcedureTemplatesOutputArgs, opts?: InvokeOptions): Output<GetVodProcedureTemplatesResult>
    def get_vod_procedure_templates(id: Optional[str] = None,
                                    name: Optional[str] = None,
                                    result_output_file: Optional[str] = None,
                                    sub_app_id: Optional[float] = None,
                                    type: Optional[str] = None,
                                    opts: Optional[InvokeOptions] = None) -> GetVodProcedureTemplatesResult
    def get_vod_procedure_templates_output(id: Optional[pulumi.Input[str]] = None,
                                    name: Optional[pulumi.Input[str]] = None,
                                    result_output_file: Optional[pulumi.Input[str]] = None,
                                    sub_app_id: Optional[pulumi.Input[float]] = None,
                                    type: Optional[pulumi.Input[str]] = None,
                                    opts: Optional[InvokeOptions] = None) -> Output[GetVodProcedureTemplatesResult]
    func GetVodProcedureTemplates(ctx *Context, args *GetVodProcedureTemplatesArgs, opts ...InvokeOption) (*GetVodProcedureTemplatesResult, error)
    func GetVodProcedureTemplatesOutput(ctx *Context, args *GetVodProcedureTemplatesOutputArgs, opts ...InvokeOption) GetVodProcedureTemplatesResultOutput

    > Note: This function is named GetVodProcedureTemplates in the Go SDK.

    public static class GetVodProcedureTemplates 
    {
        public static Task<GetVodProcedureTemplatesResult> InvokeAsync(GetVodProcedureTemplatesArgs args, InvokeOptions? opts = null)
        public static Output<GetVodProcedureTemplatesResult> Invoke(GetVodProcedureTemplatesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetVodProcedureTemplatesResult> getVodProcedureTemplates(GetVodProcedureTemplatesArgs args, InvokeOptions options)
    public static Output<GetVodProcedureTemplatesResult> getVodProcedureTemplates(GetVodProcedureTemplatesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: tencentcloud:index/getVodProcedureTemplates:getVodProcedureTemplates
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    Name string
    Name of procedure template.
    ResultOutputFile string
    Used to save results.
    SubAppId double
    Subapplication ID in VOD. If you need to access a resource in a subapplication, enter the subapplication ID in this field; otherwise, leave it empty.
    Type string
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    Id string
    Name string
    Name of procedure template.
    ResultOutputFile string
    Used to save results.
    SubAppId float64
    Subapplication ID in VOD. If you need to access a resource in a subapplication, enter the subapplication ID in this field; otherwise, leave it empty.
    Type string
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    id String
    name String
    Name of procedure template.
    resultOutputFile String
    Used to save results.
    subAppId Double
    Subapplication ID in VOD. If you need to access a resource in a subapplication, enter the subapplication ID in this field; otherwise, leave it empty.
    type String
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    id string
    name string
    Name of procedure template.
    resultOutputFile string
    Used to save results.
    subAppId number
    Subapplication ID in VOD. If you need to access a resource in a subapplication, enter the subapplication ID in this field; otherwise, leave it empty.
    type string
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    id str
    name str
    Name of procedure template.
    result_output_file str
    Used to save results.
    sub_app_id float
    Subapplication ID in VOD. If you need to access a resource in a subapplication, enter the subapplication ID in this field; otherwise, leave it empty.
    type str
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    id String
    name String
    Name of procedure template.
    resultOutputFile String
    Used to save results.
    subAppId Number
    Subapplication ID in VOD. If you need to access a resource in a subapplication, enter the subapplication ID in this field; otherwise, leave it empty.
    type String
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.

    getVodProcedureTemplates Result

    The following output properties are available:

    Id string
    TemplateLists List<GetVodProcedureTemplatesTemplateList>
    A list of adaptive dynamic streaming templates. Each element contains the following attributes:
    Name string
    Task flow name.
    ResultOutputFile string
    SubAppId double
    Type string
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    Id string
    TemplateLists []GetVodProcedureTemplatesTemplateList
    A list of adaptive dynamic streaming templates. Each element contains the following attributes:
    Name string
    Task flow name.
    ResultOutputFile string
    SubAppId float64
    Type string
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    id String
    templateLists List<GetVodProcedureTemplatesTemplateList>
    A list of adaptive dynamic streaming templates. Each element contains the following attributes:
    name String
    Task flow name.
    resultOutputFile String
    subAppId Double
    type String
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    id string
    templateLists GetVodProcedureTemplatesTemplateList[]
    A list of adaptive dynamic streaming templates. Each element contains the following attributes:
    name string
    Task flow name.
    resultOutputFile string
    subAppId number
    type string
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    id str
    template_lists Sequence[GetVodProcedureTemplatesTemplateList]
    A list of adaptive dynamic streaming templates. Each element contains the following attributes:
    name str
    Task flow name.
    result_output_file str
    sub_app_id float
    type str
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    id String
    templateLists List<Property Map>
    A list of adaptive dynamic streaming templates. Each element contains the following attributes:
    name String
    Task flow name.
    resultOutputFile String
    subAppId Number
    type String
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.

    Supporting Types

    GetVodProcedureTemplatesTemplateList

    Comment string
    Template description.
    CreateTime string
    Creation time of template in ISO date format.
    MediaProcessTasks List<GetVodProcedureTemplatesTemplateListMediaProcessTask>
    Parameter of video processing task.
    Name string
    Name of procedure template.
    Type string
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    UpdateTime string
    Last modified time of template in ISO date format.
    Comment string
    Template description.
    CreateTime string
    Creation time of template in ISO date format.
    MediaProcessTasks []GetVodProcedureTemplatesTemplateListMediaProcessTask
    Parameter of video processing task.
    Name string
    Name of procedure template.
    Type string
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    UpdateTime string
    Last modified time of template in ISO date format.
    comment String
    Template description.
    createTime String
    Creation time of template in ISO date format.
    mediaProcessTasks List<GetVodProcedureTemplatesTemplateListMediaProcessTask>
    Parameter of video processing task.
    name String
    Name of procedure template.
    type String
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    updateTime String
    Last modified time of template in ISO date format.
    comment string
    Template description.
    createTime string
    Creation time of template in ISO date format.
    mediaProcessTasks GetVodProcedureTemplatesTemplateListMediaProcessTask[]
    Parameter of video processing task.
    name string
    Name of procedure template.
    type string
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    updateTime string
    Last modified time of template in ISO date format.
    comment str
    Template description.
    create_time str
    Creation time of template in ISO date format.
    media_process_tasks Sequence[GetVodProcedureTemplatesTemplateListMediaProcessTask]
    Parameter of video processing task.
    name str
    Name of procedure template.
    type str
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    update_time str
    Last modified time of template in ISO date format.
    comment String
    Template description.
    createTime String
    Creation time of template in ISO date format.
    mediaProcessTasks List<Property Map>
    Parameter of video processing task.
    name String
    Name of procedure template.
    type String
    Template type filter. Valid values: Preset, Custom. Preset: preset template; Custom: custom template.
    updateTime String
    Last modified time of template in ISO date format.

    GetVodProcedureTemplatesTemplateListMediaProcessTask

    AdaptiveDynamicStreamingTaskLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskAdaptiveDynamicStreamingTaskList>
    List of adaptive bitrate streaming tasks. Note: this field may return null, indicating that no valid values can be obtained.
    AnimatedGraphicTaskLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskAnimatedGraphicTaskList>
    List of animated image generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
    CoverBySnapshotTaskLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskCoverBySnapshotTaskList>
    List of cover generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
    ImageSpriteTaskLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskImageSpriteTaskList>
    List of image sprite generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
    SampleSnapshotTaskLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskSampleSnapshotTaskList>
    List of sampled screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
    SnapshotByTimeOffsetTaskLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskSnapshotByTimeOffsetTaskList>
    List of time point screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
    TranscodeTaskLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskTranscodeTaskList>
    List of transcoding tasks. Note: this field may return null, indicating that no valid values can be obtained.
    AdaptiveDynamicStreamingTaskLists []GetVodProcedureTemplatesTemplateListMediaProcessTaskAdaptiveDynamicStreamingTaskList
    List of adaptive bitrate streaming tasks. Note: this field may return null, indicating that no valid values can be obtained.
    AnimatedGraphicTaskLists []GetVodProcedureTemplatesTemplateListMediaProcessTaskAnimatedGraphicTaskList
    List of animated image generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
    CoverBySnapshotTaskLists []GetVodProcedureTemplatesTemplateListMediaProcessTaskCoverBySnapshotTaskList
    List of cover generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
    ImageSpriteTaskLists []GetVodProcedureTemplatesTemplateListMediaProcessTaskImageSpriteTaskList
    List of image sprite generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
    SampleSnapshotTaskLists []GetVodProcedureTemplatesTemplateListMediaProcessTaskSampleSnapshotTaskList
    List of sampled screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
    SnapshotByTimeOffsetTaskLists []GetVodProcedureTemplatesTemplateListMediaProcessTaskSnapshotByTimeOffsetTaskList
    List of time point screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
    TranscodeTaskLists []GetVodProcedureTemplatesTemplateListMediaProcessTaskTranscodeTaskList
    List of transcoding tasks. Note: this field may return null, indicating that no valid values can be obtained.
    adaptiveDynamicStreamingTaskLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskAdaptiveDynamicStreamingTaskList>
    List of adaptive bitrate streaming tasks. Note: this field may return null, indicating that no valid values can be obtained.
    animatedGraphicTaskLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskAnimatedGraphicTaskList>
    List of animated image generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
    coverBySnapshotTaskLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskCoverBySnapshotTaskList>
    List of cover generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
    imageSpriteTaskLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskImageSpriteTaskList>
    List of image sprite generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
    sampleSnapshotTaskLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskSampleSnapshotTaskList>
    List of sampled screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
    snapshotByTimeOffsetTaskLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskSnapshotByTimeOffsetTaskList>
    List of time point screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
    transcodeTaskLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskTranscodeTaskList>
    List of transcoding tasks. Note: this field may return null, indicating that no valid values can be obtained.
    adaptiveDynamicStreamingTaskLists GetVodProcedureTemplatesTemplateListMediaProcessTaskAdaptiveDynamicStreamingTaskList[]
    List of adaptive bitrate streaming tasks. Note: this field may return null, indicating that no valid values can be obtained.
    animatedGraphicTaskLists GetVodProcedureTemplatesTemplateListMediaProcessTaskAnimatedGraphicTaskList[]
    List of animated image generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
    coverBySnapshotTaskLists GetVodProcedureTemplatesTemplateListMediaProcessTaskCoverBySnapshotTaskList[]
    List of cover generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
    imageSpriteTaskLists GetVodProcedureTemplatesTemplateListMediaProcessTaskImageSpriteTaskList[]
    List of image sprite generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
    sampleSnapshotTaskLists GetVodProcedureTemplatesTemplateListMediaProcessTaskSampleSnapshotTaskList[]
    List of sampled screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
    snapshotByTimeOffsetTaskLists GetVodProcedureTemplatesTemplateListMediaProcessTaskSnapshotByTimeOffsetTaskList[]
    List of time point screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
    transcodeTaskLists GetVodProcedureTemplatesTemplateListMediaProcessTaskTranscodeTaskList[]
    List of transcoding tasks. Note: this field may return null, indicating that no valid values can be obtained.
    adaptive_dynamic_streaming_task_lists Sequence[GetVodProcedureTemplatesTemplateListMediaProcessTaskAdaptiveDynamicStreamingTaskList]
    List of adaptive bitrate streaming tasks. Note: this field may return null, indicating that no valid values can be obtained.
    animated_graphic_task_lists Sequence[GetVodProcedureTemplatesTemplateListMediaProcessTaskAnimatedGraphicTaskList]
    List of animated image generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
    cover_by_snapshot_task_lists Sequence[GetVodProcedureTemplatesTemplateListMediaProcessTaskCoverBySnapshotTaskList]
    List of cover generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
    image_sprite_task_lists Sequence[GetVodProcedureTemplatesTemplateListMediaProcessTaskImageSpriteTaskList]
    List of image sprite generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
    sample_snapshot_task_lists Sequence[GetVodProcedureTemplatesTemplateListMediaProcessTaskSampleSnapshotTaskList]
    List of sampled screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
    snapshot_by_time_offset_task_lists Sequence[GetVodProcedureTemplatesTemplateListMediaProcessTaskSnapshotByTimeOffsetTaskList]
    List of time point screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
    transcode_task_lists Sequence[GetVodProcedureTemplatesTemplateListMediaProcessTaskTranscodeTaskList]
    List of transcoding tasks. Note: this field may return null, indicating that no valid values can be obtained.
    adaptiveDynamicStreamingTaskLists List<Property Map>
    List of adaptive bitrate streaming tasks. Note: this field may return null, indicating that no valid values can be obtained.
    animatedGraphicTaskLists List<Property Map>
    List of animated image generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
    coverBySnapshotTaskLists List<Property Map>
    List of cover generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
    imageSpriteTaskLists List<Property Map>
    List of image sprite generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
    sampleSnapshotTaskLists List<Property Map>
    List of sampled screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
    snapshotByTimeOffsetTaskLists List<Property Map>
    List of time point screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
    transcodeTaskLists List<Property Map>
    List of transcoding tasks. Note: this field may return null, indicating that no valid values can be obtained.

    GetVodProcedureTemplatesTemplateListMediaProcessTaskAdaptiveDynamicStreamingTaskList

    Definition string
    Video transcoding template ID.
    WatermarkLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskAdaptiveDynamicStreamingTaskListWatermarkList>
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    Definition string
    Video transcoding template ID.
    WatermarkLists []GetVodProcedureTemplatesTemplateListMediaProcessTaskAdaptiveDynamicStreamingTaskListWatermarkList
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    definition String
    Video transcoding template ID.
    watermarkLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskAdaptiveDynamicStreamingTaskListWatermarkList>
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    definition string
    Video transcoding template ID.
    watermarkLists GetVodProcedureTemplatesTemplateListMediaProcessTaskAdaptiveDynamicStreamingTaskListWatermarkList[]
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    definition str
    Video transcoding template ID.
    watermark_lists Sequence[GetVodProcedureTemplatesTemplateListMediaProcessTaskAdaptiveDynamicStreamingTaskListWatermarkList]
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    definition String
    Video transcoding template ID.
    watermarkLists 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.

    GetVodProcedureTemplatesTemplateListMediaProcessTaskAdaptiveDynamicStreamingTaskListWatermarkList

    Definition string
    Video transcoding template ID.
    EndTimeOffset double
    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.
    StartTimeOffset double
    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.
    SvgContent string
    TextContent string
    Definition string
    Video transcoding template ID.
    EndTimeOffset float64
    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.
    StartTimeOffset float64
    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.
    SvgContent string
    TextContent string
    definition String
    Video transcoding template ID.
    endTimeOffset Double
    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.
    startTimeOffset Double
    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.
    svgContent String
    textContent String
    definition string
    Video transcoding template ID.
    endTimeOffset number
    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.
    startTimeOffset number
    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.
    svgContent string
    textContent string
    definition str
    Video transcoding template ID.
    end_time_offset float
    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.
    start_time_offset float
    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.
    svg_content str
    text_content str
    definition String
    Video transcoding template ID.
    endTimeOffset Number
    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.
    startTimeOffset Number
    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.
    svgContent String
    textContent String

    GetVodProcedureTemplatesTemplateListMediaProcessTaskAnimatedGraphicTaskList

    Definition string
    Video transcoding template ID.
    EndTimeOffset double
    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.
    StartTimeOffset double
    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.
    Definition string
    Video transcoding template ID.
    EndTimeOffset float64
    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.
    StartTimeOffset float64
    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.
    definition String
    Video transcoding template ID.
    endTimeOffset Double
    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.
    startTimeOffset Double
    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.
    definition string
    Video transcoding template ID.
    endTimeOffset number
    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.
    startTimeOffset number
    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.
    definition str
    Video transcoding template ID.
    end_time_offset float
    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.
    start_time_offset float
    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.
    definition String
    Video transcoding template ID.
    endTimeOffset Number
    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.
    startTimeOffset Number
    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.

    GetVodProcedureTemplatesTemplateListMediaProcessTaskCoverBySnapshotTaskList

    Definition string
    Video transcoding template ID.
    PositionType string
    Screen capturing mode. Valid values: Time, Percent. Time: screen captures by time point, Percent: screen captures by percentage.
    PositionValue double
    Screenshot position: For time point screen capturing, this means to take a screenshot at a specified time point (in seconds) and use it as the cover. For percentage screen capturing, this value means to take a screenshot at a specified percentage of the video duration and use it as the cover.
    WatermarkLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskCoverBySnapshotTaskListWatermarkList>
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    Definition string
    Video transcoding template ID.
    PositionType string
    Screen capturing mode. Valid values: Time, Percent. Time: screen captures by time point, Percent: screen captures by percentage.
    PositionValue float64
    Screenshot position: For time point screen capturing, this means to take a screenshot at a specified time point (in seconds) and use it as the cover. For percentage screen capturing, this value means to take a screenshot at a specified percentage of the video duration and use it as the cover.
    WatermarkLists []GetVodProcedureTemplatesTemplateListMediaProcessTaskCoverBySnapshotTaskListWatermarkList
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    definition String
    Video transcoding template ID.
    positionType String
    Screen capturing mode. Valid values: Time, Percent. Time: screen captures by time point, Percent: screen captures by percentage.
    positionValue Double
    Screenshot position: For time point screen capturing, this means to take a screenshot at a specified time point (in seconds) and use it as the cover. For percentage screen capturing, this value means to take a screenshot at a specified percentage of the video duration and use it as the cover.
    watermarkLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskCoverBySnapshotTaskListWatermarkList>
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    definition string
    Video transcoding template ID.
    positionType string
    Screen capturing mode. Valid values: Time, Percent. Time: screen captures by time point, Percent: screen captures by percentage.
    positionValue number
    Screenshot position: For time point screen capturing, this means to take a screenshot at a specified time point (in seconds) and use it as the cover. For percentage screen capturing, this value means to take a screenshot at a specified percentage of the video duration and use it as the cover.
    watermarkLists GetVodProcedureTemplatesTemplateListMediaProcessTaskCoverBySnapshotTaskListWatermarkList[]
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    definition str
    Video transcoding template ID.
    position_type str
    Screen capturing mode. Valid values: Time, Percent. Time: screen captures by time point, Percent: screen captures by percentage.
    position_value float
    Screenshot position: For time point screen capturing, this means to take a screenshot at a specified time point (in seconds) and use it as the cover. For percentage screen capturing, this value means to take a screenshot at a specified percentage of the video duration and use it as the cover.
    watermark_lists Sequence[GetVodProcedureTemplatesTemplateListMediaProcessTaskCoverBySnapshotTaskListWatermarkList]
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    definition String
    Video transcoding template ID.
    positionType String
    Screen capturing mode. Valid values: Time, Percent. Time: screen captures by time point, Percent: screen captures by percentage.
    positionValue Number
    Screenshot position: For time point screen capturing, this means to take a screenshot at a specified time point (in seconds) and use it as the cover. For percentage screen capturing, this value means to take a screenshot at a specified percentage of the video duration and use it as the cover.
    watermarkLists 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.

    GetVodProcedureTemplatesTemplateListMediaProcessTaskCoverBySnapshotTaskListWatermarkList

    Definition string
    Video transcoding template ID.
    EndTimeOffset double
    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.
    StartTimeOffset double
    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.
    SvgContent string
    TextContent string
    Definition string
    Video transcoding template ID.
    EndTimeOffset float64
    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.
    StartTimeOffset float64
    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.
    SvgContent string
    TextContent string
    definition String
    Video transcoding template ID.
    endTimeOffset Double
    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.
    startTimeOffset Double
    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.
    svgContent String
    textContent String
    definition string
    Video transcoding template ID.
    endTimeOffset number
    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.
    startTimeOffset number
    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.
    svgContent string
    textContent string
    definition str
    Video transcoding template ID.
    end_time_offset float
    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.
    start_time_offset float
    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.
    svg_content str
    text_content str
    definition String
    Video transcoding template ID.
    endTimeOffset Number
    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.
    startTimeOffset Number
    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.
    svgContent String
    textContent String

    GetVodProcedureTemplatesTemplateListMediaProcessTaskImageSpriteTaskList

    Definition string
    Video transcoding template ID.
    Definition string
    Video transcoding template ID.
    definition String
    Video transcoding template ID.
    definition string
    Video transcoding template ID.
    definition str
    Video transcoding template ID.
    definition String
    Video transcoding template ID.

    GetVodProcedureTemplatesTemplateListMediaProcessTaskSampleSnapshotTaskList

    Definition string
    Video transcoding template ID.
    WatermarkLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskSampleSnapshotTaskListWatermarkList>
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    Definition string
    Video transcoding template ID.
    WatermarkLists []GetVodProcedureTemplatesTemplateListMediaProcessTaskSampleSnapshotTaskListWatermarkList
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    definition String
    Video transcoding template ID.
    watermarkLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskSampleSnapshotTaskListWatermarkList>
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    definition string
    Video transcoding template ID.
    watermarkLists GetVodProcedureTemplatesTemplateListMediaProcessTaskSampleSnapshotTaskListWatermarkList[]
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    definition str
    Video transcoding template ID.
    watermark_lists Sequence[GetVodProcedureTemplatesTemplateListMediaProcessTaskSampleSnapshotTaskListWatermarkList]
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    definition String
    Video transcoding template ID.
    watermarkLists 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.

    GetVodProcedureTemplatesTemplateListMediaProcessTaskSampleSnapshotTaskListWatermarkList

    Definition string
    Video transcoding template ID.
    EndTimeOffset double
    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.
    StartTimeOffset double
    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.
    SvgContent string
    TextContent string
    Definition string
    Video transcoding template ID.
    EndTimeOffset float64
    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.
    StartTimeOffset float64
    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.
    SvgContent string
    TextContent string
    definition String
    Video transcoding template ID.
    endTimeOffset Double
    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.
    startTimeOffset Double
    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.
    svgContent String
    textContent String
    definition string
    Video transcoding template ID.
    endTimeOffset number
    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.
    startTimeOffset number
    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.
    svgContent string
    textContent string
    definition str
    Video transcoding template ID.
    end_time_offset float
    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.
    start_time_offset float
    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.
    svg_content str
    text_content str
    definition String
    Video transcoding template ID.
    endTimeOffset Number
    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.
    startTimeOffset Number
    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.
    svgContent String
    textContent String

    GetVodProcedureTemplatesTemplateListMediaProcessTaskSnapshotByTimeOffsetTaskList

    Definition string
    Video transcoding template ID.
    ExtTimeOffsetLists List<string>
    The list of screenshot time points. s and % formats are supported: When a time point string ends with s, its unit is second. For example, 3.5s means the 3.5th second of the video; When a time point string ends with %, it is marked with corresponding percentage of the video duration. For example, 10% means that the time point is at the 10% of the video entire duration.
    WatermarkLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskSnapshotByTimeOffsetTaskListWatermarkList>
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    Definition string
    Video transcoding template ID.
    ExtTimeOffsetLists []string
    The list of screenshot time points. s and % formats are supported: When a time point string ends with s, its unit is second. For example, 3.5s means the 3.5th second of the video; When a time point string ends with %, it is marked with corresponding percentage of the video duration. For example, 10% means that the time point is at the 10% of the video entire duration.
    WatermarkLists []GetVodProcedureTemplatesTemplateListMediaProcessTaskSnapshotByTimeOffsetTaskListWatermarkList
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    definition String
    Video transcoding template ID.
    extTimeOffsetLists List<String>
    The list of screenshot time points. s and % formats are supported: When a time point string ends with s, its unit is second. For example, 3.5s means the 3.5th second of the video; When a time point string ends with %, it is marked with corresponding percentage of the video duration. For example, 10% means that the time point is at the 10% of the video entire duration.
    watermarkLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskSnapshotByTimeOffsetTaskListWatermarkList>
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    definition string
    Video transcoding template ID.
    extTimeOffsetLists string[]
    The list of screenshot time points. s and % formats are supported: When a time point string ends with s, its unit is second. For example, 3.5s means the 3.5th second of the video; When a time point string ends with %, it is marked with corresponding percentage of the video duration. For example, 10% means that the time point is at the 10% of the video entire duration.
    watermarkLists GetVodProcedureTemplatesTemplateListMediaProcessTaskSnapshotByTimeOffsetTaskListWatermarkList[]
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    definition str
    Video transcoding template ID.
    ext_time_offset_lists Sequence[str]
    The list of screenshot time points. s and % formats are supported: When a time point string ends with s, its unit is second. For example, 3.5s means the 3.5th second of the video; When a time point string ends with %, it is marked with corresponding percentage of the video duration. For example, 10% means that the time point is at the 10% of the video entire duration.
    watermark_lists Sequence[GetVodProcedureTemplatesTemplateListMediaProcessTaskSnapshotByTimeOffsetTaskListWatermarkList]
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    definition String
    Video transcoding template ID.
    extTimeOffsetLists List<String>
    The list of screenshot time points. s and % formats are supported: When a time point string ends with s, its unit is second. For example, 3.5s means the 3.5th second of the video; When a time point string ends with %, it is marked with corresponding percentage of the video duration. For example, 10% means that the time point is at the 10% of the video entire duration.
    watermarkLists 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.

    GetVodProcedureTemplatesTemplateListMediaProcessTaskSnapshotByTimeOffsetTaskListWatermarkList

    Definition string
    Video transcoding template ID.
    EndTimeOffset double
    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.
    StartTimeOffset double
    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.
    SvgContent string
    TextContent string
    Definition string
    Video transcoding template ID.
    EndTimeOffset float64
    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.
    StartTimeOffset float64
    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.
    SvgContent string
    TextContent string
    definition String
    Video transcoding template ID.
    endTimeOffset Double
    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.
    startTimeOffset Double
    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.
    svgContent String
    textContent String
    definition string
    Video transcoding template ID.
    endTimeOffset number
    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.
    startTimeOffset number
    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.
    svgContent string
    textContent string
    definition str
    Video transcoding template ID.
    end_time_offset float
    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.
    start_time_offset float
    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.
    svg_content str
    text_content str
    definition String
    Video transcoding template ID.
    endTimeOffset Number
    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.
    startTimeOffset Number
    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.
    svgContent String
    textContent String

    GetVodProcedureTemplatesTemplateListMediaProcessTaskTranscodeTaskList

    Definition string
    Video transcoding template ID.
    MosaicLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskTranscodeTaskListMosaicList>
    List of blurs. Up to 10 ones can be supported.
    WatermarkLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskTranscodeTaskListWatermarkList>
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    Definition string
    Video transcoding template ID.
    MosaicLists []GetVodProcedureTemplatesTemplateListMediaProcessTaskTranscodeTaskListMosaicList
    List of blurs. Up to 10 ones can be supported.
    WatermarkLists []GetVodProcedureTemplatesTemplateListMediaProcessTaskTranscodeTaskListWatermarkList
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    definition String
    Video transcoding template ID.
    mosaicLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskTranscodeTaskListMosaicList>
    List of blurs. Up to 10 ones can be supported.
    watermarkLists List<GetVodProcedureTemplatesTemplateListMediaProcessTaskTranscodeTaskListWatermarkList>
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    definition string
    Video transcoding template ID.
    mosaicLists GetVodProcedureTemplatesTemplateListMediaProcessTaskTranscodeTaskListMosaicList[]
    List of blurs. Up to 10 ones can be supported.
    watermarkLists GetVodProcedureTemplatesTemplateListMediaProcessTaskTranscodeTaskListWatermarkList[]
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    definition str
    Video transcoding template ID.
    mosaic_lists Sequence[GetVodProcedureTemplatesTemplateListMediaProcessTaskTranscodeTaskListMosaicList]
    List of blurs. Up to 10 ones can be supported.
    watermark_lists Sequence[GetVodProcedureTemplatesTemplateListMediaProcessTaskTranscodeTaskListWatermarkList]
    List of up to 10 image or text watermarks. Note: this field may return null, indicating that no valid values can be obtained.
    definition String
    Video transcoding template ID.
    mosaicLists List<Property Map>
    List of blurs. Up to 10 ones can be supported.
    watermarkLists 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.

    GetVodProcedureTemplatesTemplateListMediaProcessTaskTranscodeTaskListMosaicList

    CoordinateOrigin 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.
    EndTimeOffset double
    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 that Height is 10% of the video height; If the string ends in px, the height of the blur will be in px; for example, 100px means that Height is 100 px.
    StartTimeOffset double
    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 that width is 10% of the video width; If the string ends in px, the width of the blur will be in px; for example, 100px means that Width is 100 px.
    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 that XPos is 10% of the video width; If the string ends in px, the XPos of the blur will be the specified px; for example, 100px means that XPos is 100 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 that YPos is 10% of the video height; If the string ends in px, the YPos of the blur will be the specified px; for example, 100px means that YPos is 100 px.
    CoordinateOrigin 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.
    EndTimeOffset float64
    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 that Height is 10% of the video height; If the string ends in px, the height of the blur will be in px; for example, 100px means that Height is 100 px.
    StartTimeOffset float64
    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 that width is 10% of the video width; If the string ends in px, the width of the blur will be in px; for example, 100px means that Width is 100 px.
    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 that XPos is 10% of the video width; If the string ends in px, the XPos of the blur will be the specified px; for example, 100px means that XPos is 100 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 that YPos is 10% of the video height; If the string ends in px, the YPos of the blur will be the specified px; for example, 100px means that YPos is 100 px.
    coordinateOrigin 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.
    endTimeOffset Double
    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 that Height is 10% of the video height; If the string ends in px, the height of the blur will be in px; for example, 100px means that Height is 100 px.
    startTimeOffset Double
    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 that width is 10% of the video width; If the string ends in px, the width of the blur will be in px; for example, 100px means that Width is 100 px.
    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 that XPos is 10% of the video width; If the string ends in px, the XPos of the blur will be the specified px; for example, 100px means that XPos is 100 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 that YPos is 10% of the video height; If the string ends in px, the YPos of the blur will be the specified px; for example, 100px means that YPos is 100 px.
    coordinateOrigin 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.
    endTimeOffset number
    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 that Height is 10% of the video height; If the string ends in px, the height of the blur will be in px; for example, 100px means that Height is 100 px.
    startTimeOffset number
    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 that width is 10% of the video width; If the string ends in px, the width of the blur will be in px; for example, 100px means that Width is 100 px.
    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 that XPos is 10% of the video width; If the string ends in px, the XPos of the blur will be the specified px; for example, 100px means that XPos is 100 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 that YPos is 10% of the video height; If the string ends in px, the YPos of the blur will be the specified px; for example, 100px means that YPos is 100 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.
    end_time_offset float
    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 that Height is 10% of the video height; If the string ends in px, the height of the blur will be in px; for example, 100px means that Height is 100 px.
    start_time_offset float
    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 that width is 10% of the video width; If the string ends in px, the width of the blur will be in px; for example, 100px means that Width is 100 px.
    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 that XPos is 10% of the video width; If the string ends in px, the XPos of the blur will be the specified px; for example, 100px means that XPos is 100 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 that YPos is 10% of the video height; If the string ends in px, the YPos of the blur will be the specified px; for example, 100px means that YPos is 100 px.
    coordinateOrigin 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.
    endTimeOffset Number
    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 that Height is 10% of the video height; If the string ends in px, the height of the blur will be in px; for example, 100px means that Height is 100 px.
    startTimeOffset Number
    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 that width is 10% of the video width; If the string ends in px, the width of the blur will be in px; for example, 100px means that Width is 100 px.
    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 that XPos is 10% of the video width; If the string ends in px, the XPos of the blur will be the specified px; for example, 100px means that XPos is 100 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 that YPos is 10% of the video height; If the string ends in px, the YPos of the blur will be the specified px; for example, 100px means that YPos is 100 px.

    GetVodProcedureTemplatesTemplateListMediaProcessTaskTranscodeTaskListWatermarkList

    Definition string
    Video transcoding template ID.
    EndTimeOffset double
    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.
    StartTimeOffset double
    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.
    SvgContent string
    TextContent string
    Definition string
    Video transcoding template ID.
    EndTimeOffset float64
    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.
    StartTimeOffset float64
    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.
    SvgContent string
    TextContent string
    definition String
    Video transcoding template ID.
    endTimeOffset Double
    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.
    startTimeOffset Double
    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.
    svgContent String
    textContent String
    definition string
    Video transcoding template ID.
    endTimeOffset number
    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.
    startTimeOffset number
    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.
    svgContent string
    textContent string
    definition str
    Video transcoding template ID.
    end_time_offset float
    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.
    start_time_offset float
    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.
    svg_content str
    text_content str
    definition String
    Video transcoding template ID.
    endTimeOffset Number
    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.
    startTimeOffset Number
    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.
    svgContent String
    textContent String

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack