tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack
tencentcloud.getVodProcedureTemplates
Explore with Pulumi AI
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.
- Result
Output stringFile - Used to save results.
- Sub
App doubleId - 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.
- Result
Output stringFile - Used to save results.
- Sub
App float64Id - 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.
- result
Output StringFile - Used to save results.
- sub
App DoubleId - 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.
- result
Output stringFile - Used to save results.
- sub
App numberId - 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_ strfile - Used to save results.
- sub_
app_ floatid - 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.
- result
Output StringFile - Used to save results.
- sub
App NumberId - 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
- Template
Lists List<GetVod Procedure Templates Template List> - A list of adaptive dynamic streaming templates. Each element contains the following attributes:
- Name string
- Task flow name.
- Result
Output stringFile - Sub
App doubleId - Type string
- Template type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
- Id string
- Template
Lists []GetVod Procedure Templates Template List - A list of adaptive dynamic streaming templates. Each element contains the following attributes:
- Name string
- Task flow name.
- Result
Output stringFile - Sub
App float64Id - Type string
- Template type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
- id String
- template
Lists List<GetVod Procedure Templates Template List> - A list of adaptive dynamic streaming templates. Each element contains the following attributes:
- name String
- Task flow name.
- result
Output StringFile - sub
App DoubleId - type String
- Template type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
- id string
- template
Lists GetVod Procedure Templates Template List[] - A list of adaptive dynamic streaming templates. Each element contains the following attributes:
- name string
- Task flow name.
- result
Output stringFile - sub
App numberId - type string
- Template type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
- id str
- template_
lists Sequence[GetVod Procedure Templates Template List] - A list of adaptive dynamic streaming templates. Each element contains the following attributes:
- name str
- Task flow name.
- result_
output_ strfile - sub_
app_ floatid - type str
- Template type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
- id String
- template
Lists List<Property Map> - A list of adaptive dynamic streaming templates. Each element contains the following attributes:
- name String
- Task flow name.
- result
Output StringFile - sub
App NumberId - type String
- Template type filter. Valid values:
Preset
,Custom
.Preset
: preset template;Custom
: custom template.
Supporting Types
GetVodProcedureTemplatesTemplateList
- Comment string
- Template description.
- Create
Time string - Creation time of template in ISO date format.
- Media
Process List<GetTasks Vod Procedure Templates Template List Media Process Task> - 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. - Update
Time string - Last modified time of template in ISO date format.
- Comment string
- Template description.
- Create
Time string - Creation time of template in ISO date format.
- Media
Process []GetTasks Vod Procedure Templates Template List Media Process Task - 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. - Update
Time string - Last modified time of template in ISO date format.
- comment String
- Template description.
- create
Time String - Creation time of template in ISO date format.
- media
Process List<GetTasks Vod Procedure Templates Template List Media Process Task> - 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. - update
Time String - Last modified time of template in ISO date format.
- comment string
- Template description.
- create
Time string - Creation time of template in ISO date format.
- media
Process GetTasks Vod Procedure Templates Template List Media Process Task[] - 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. - update
Time 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_ Sequence[Gettasks Vod Procedure Templates Template List Media Process Task] - 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.
- create
Time String - Creation time of template in ISO date format.
- media
Process List<Property Map>Tasks - 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. - update
Time String - Last modified time of template in ISO date format.
GetVodProcedureTemplatesTemplateListMediaProcessTask
- Adaptive
Dynamic List<GetStreaming Task Lists Vod Procedure Templates Template List Media Process Task Adaptive Dynamic Streaming Task List> - List of adaptive bitrate streaming tasks. Note: this field may return null, indicating that no valid values can be obtained.
- Animated
Graphic List<GetTask Lists Vod Procedure Templates Template List Media Process Task Animated Graphic Task List> - List of animated image generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
- Cover
By List<GetSnapshot Task Lists Vod Procedure Templates Template List Media Process Task Cover By Snapshot Task List> - List of cover generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
- Image
Sprite List<GetTask Lists Vod Procedure Templates Template List Media Process Task Image Sprite Task List> - List of image sprite generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
- Sample
Snapshot List<GetTask Lists Vod Procedure Templates Template List Media Process Task Sample Snapshot Task List> - List of sampled screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
- Snapshot
By List<GetTime Offset Task Lists Vod Procedure Templates Template List Media Process Task Snapshot By Time Offset Task List> - List of time point screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
- Transcode
Task List<GetLists Vod Procedure Templates Template List Media Process Task Transcode Task List> - List of transcoding tasks. Note: this field may return null, indicating that no valid values can be obtained.
- Adaptive
Dynamic []GetStreaming Task Lists Vod Procedure Templates Template List Media Process Task Adaptive Dynamic Streaming Task List - List of adaptive bitrate streaming tasks. Note: this field may return null, indicating that no valid values can be obtained.
- Animated
Graphic []GetTask Lists Vod Procedure Templates Template List Media Process Task Animated Graphic Task List - List of animated image generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
- Cover
By []GetSnapshot Task Lists Vod Procedure Templates Template List Media Process Task Cover By Snapshot Task List - List of cover generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
- Image
Sprite []GetTask Lists Vod Procedure Templates Template List Media Process Task Image Sprite Task List - List of image sprite generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
- Sample
Snapshot []GetTask Lists Vod Procedure Templates Template List Media Process Task Sample Snapshot Task List - List of sampled screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
- Snapshot
By []GetTime Offset Task Lists Vod Procedure Templates Template List Media Process Task Snapshot By Time Offset Task List - List of time point screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
- Transcode
Task []GetLists Vod Procedure Templates Template List Media Process Task Transcode Task List - List of transcoding tasks. Note: this field may return null, indicating that no valid values can be obtained.
- adaptive
Dynamic List<GetStreaming Task Lists Vod Procedure Templates Template List Media Process Task Adaptive Dynamic Streaming Task List> - List of adaptive bitrate streaming tasks. Note: this field may return null, indicating that no valid values can be obtained.
- animated
Graphic List<GetTask Lists Vod Procedure Templates Template List Media Process Task Animated Graphic Task List> - List of animated image generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
- cover
By List<GetSnapshot Task Lists Vod Procedure Templates Template List Media Process Task Cover By Snapshot Task List> - List of cover generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
- image
Sprite List<GetTask Lists Vod Procedure Templates Template List Media Process Task Image Sprite Task List> - List of image sprite generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
- sample
Snapshot List<GetTask Lists Vod Procedure Templates Template List Media Process Task Sample Snapshot Task List> - List of sampled screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
- snapshot
By List<GetTime Offset Task Lists Vod Procedure Templates Template List Media Process Task Snapshot By Time Offset Task List> - List of time point screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
- transcode
Task List<GetLists Vod Procedure Templates Template List Media Process Task Transcode Task List> - List of transcoding tasks. Note: this field may return null, indicating that no valid values can be obtained.
- adaptive
Dynamic GetStreaming Task Lists Vod Procedure Templates Template List Media Process Task Adaptive Dynamic Streaming Task List[] - List of adaptive bitrate streaming tasks. Note: this field may return null, indicating that no valid values can be obtained.
- animated
Graphic GetTask Lists Vod Procedure Templates Template List Media Process Task Animated Graphic Task List[] - List of animated image generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
- cover
By GetSnapshot Task Lists Vod Procedure Templates Template List Media Process Task Cover By Snapshot Task List[] - List of cover generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
- image
Sprite GetTask Lists Vod Procedure Templates Template List Media Process Task Image Sprite Task List[] - List of image sprite generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
- sample
Snapshot GetTask Lists Vod Procedure Templates Template List Media Process Task Sample Snapshot Task List[] - List of sampled screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
- snapshot
By GetTime Offset Task Lists Vod Procedure Templates Template List Media Process Task Snapshot By Time Offset Task List[] - List of time point screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
- transcode
Task GetLists Vod Procedure Templates Template List Media Process Task Transcode Task List[] - List of transcoding tasks. Note: this field may return null, indicating that no valid values can be obtained.
- adaptive_
dynamic_ Sequence[Getstreaming_ task_ lists Vod Procedure Templates Template List Media Process Task Adaptive Dynamic Streaming Task List] - List of adaptive bitrate streaming tasks. Note: this field may return null, indicating that no valid values can be obtained.
- animated_
graphic_ Sequence[Gettask_ lists Vod Procedure Templates Template List Media Process Task Animated Graphic Task List] - List of animated image generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
- cover_
by_ Sequence[Getsnapshot_ task_ lists Vod Procedure Templates Template List Media Process Task Cover By Snapshot Task List] - List of cover generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
- image_
sprite_ Sequence[Gettask_ lists Vod Procedure Templates Template List Media Process Task Image Sprite Task List] - List of image sprite generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
- sample_
snapshot_ Sequence[Gettask_ lists Vod Procedure Templates Template List Media Process Task Sample Snapshot Task List] - List of sampled screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
- snapshot_
by_ Sequence[Gettime_ offset_ task_ lists Vod Procedure Templates Template List Media Process Task Snapshot By Time Offset Task List] - List of time point screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
- transcode_
task_ Sequence[Getlists Vod Procedure Templates Template List Media Process Task Transcode Task List] - List of transcoding tasks. Note: this field may return null, indicating that no valid values can be obtained.
- adaptive
Dynamic List<Property Map>Streaming Task Lists - List of adaptive bitrate streaming tasks. Note: this field may return null, indicating that no valid values can be obtained.
- animated
Graphic List<Property Map>Task Lists - List of animated image generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
- cover
By List<Property Map>Snapshot Task Lists - List of cover generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
- image
Sprite List<Property Map>Task Lists - List of image sprite generating tasks. Note: this field may return null, indicating that no valid values can be obtained.
- sample
Snapshot List<Property Map>Task Lists - List of sampled screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
- snapshot
By List<Property Map>Time Offset Task Lists - List of time point screen capturing tasks. Note: this field may return null, indicating that no valid values can be obtained.
- transcode
Task List<Property Map>Lists - 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.
- Watermark
Lists List<GetVod Procedure Templates Template List Media Process Task Adaptive Dynamic Streaming Task List Watermark List> - 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.
- Watermark
Lists []GetVod Procedure Templates Template List Media Process Task Adaptive Dynamic Streaming Task List Watermark List - 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.
- watermark
Lists List<GetVod Procedure Templates Template List Media Process Task Adaptive Dynamic Streaming Task List Watermark List> - 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.
- watermark
Lists GetVod Procedure Templates Template List Media Process Task Adaptive Dynamic Streaming Task List Watermark List[] - 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[GetVod Procedure Templates Template List Media Process Task Adaptive Dynamic Streaming Task List Watermark List] - 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.
- watermark
Lists 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.
- End
Time doubleOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - Start
Time doubleOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - Svg
Content string - Text
Content string
- Definition string
- Video transcoding template ID.
- End
Time float64Offset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - Start
Time float64Offset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - Svg
Content string - Text
Content string
- definition String
- Video transcoding template ID.
- end
Time DoubleOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start
Time DoubleOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - svg
Content String - text
Content String
- definition string
- Video transcoding template ID.
- end
Time numberOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start
Time numberOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - svg
Content string - text
Content string
- definition str
- Video transcoding template ID.
- end_
time_ floatoffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start_
time_ floatoffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(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.
- end
Time NumberOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start
Time NumberOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - svg
Content String - text
Content String
GetVodProcedureTemplatesTemplateListMediaProcessTaskAnimatedGraphicTaskList
- Definition string
- Video transcoding template ID.
- End
Time doubleOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - Start
Time doubleOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame.
- Definition string
- Video transcoding template ID.
- End
Time float64Offset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - Start
Time float64Offset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame.
- definition String
- Video transcoding template ID.
- end
Time DoubleOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start
Time DoubleOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame.
- definition string
- Video transcoding template ID.
- end
Time numberOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start
Time numberOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame.
- definition str
- Video transcoding template ID.
- end_
time_ floatoffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start_
time_ floatoffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame.
- definition String
- Video transcoding template ID.
- end
Time NumberOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start
Time NumberOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame.
GetVodProcedureTemplatesTemplateListMediaProcessTaskCoverBySnapshotTaskList
- Definition string
- Video transcoding template ID.
- Position
Type string - Screen capturing mode. Valid values:
Time
,Percent
.Time
: screen captures by time point,Percent
: screen captures by percentage. - Position
Value 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.
- Watermark
Lists List<GetVod Procedure Templates Template List Media Process Task Cover By Snapshot Task List Watermark List> - 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.
- Position
Type string - Screen capturing mode. Valid values:
Time
,Percent
.Time
: screen captures by time point,Percent
: screen captures by percentage. - Position
Value 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.
- Watermark
Lists []GetVod Procedure Templates Template List Media Process Task Cover By Snapshot Task List Watermark List - 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.
- position
Type String - Screen capturing mode. Valid values:
Time
,Percent
.Time
: screen captures by time point,Percent
: screen captures by percentage. - position
Value 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.
- watermark
Lists List<GetVod Procedure Templates Template List Media Process Task Cover By Snapshot Task List Watermark List> - 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.
- position
Type string - Screen capturing mode. Valid values:
Time
,Percent
.Time
: screen captures by time point,Percent
: screen captures by percentage. - position
Value 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.
- watermark
Lists GetVod Procedure Templates Template List Media Process Task Cover By Snapshot Task List Watermark List[] - 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[GetVod Procedure Templates Template List Media Process Task Cover By Snapshot Task List Watermark List] - 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.
- position
Type String - Screen capturing mode. Valid values:
Time
,Percent
.Time
: screen captures by time point,Percent
: screen captures by percentage. - position
Value 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.
- watermark
Lists 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.
- End
Time doubleOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - Start
Time doubleOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - Svg
Content string - Text
Content string
- Definition string
- Video transcoding template ID.
- End
Time float64Offset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - Start
Time float64Offset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - Svg
Content string - Text
Content string
- definition String
- Video transcoding template ID.
- end
Time DoubleOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start
Time DoubleOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - svg
Content String - text
Content String
- definition string
- Video transcoding template ID.
- end
Time numberOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start
Time numberOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - svg
Content string - text
Content string
- definition str
- Video transcoding template ID.
- end_
time_ floatoffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start_
time_ floatoffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(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.
- end
Time NumberOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start
Time NumberOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - svg
Content String - text
Content 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.
- Watermark
Lists List<GetVod Procedure Templates Template List Media Process Task Sample Snapshot Task List Watermark List> - 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.
- Watermark
Lists []GetVod Procedure Templates Template List Media Process Task Sample Snapshot Task List Watermark List - 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.
- watermark
Lists List<GetVod Procedure Templates Template List Media Process Task Sample Snapshot Task List Watermark List> - 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.
- watermark
Lists GetVod Procedure Templates Template List Media Process Task Sample Snapshot Task List Watermark List[] - 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[GetVod Procedure Templates Template List Media Process Task Sample Snapshot Task List Watermark List] - 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.
- watermark
Lists 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.
- End
Time doubleOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - Start
Time doubleOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - Svg
Content string - Text
Content string
- Definition string
- Video transcoding template ID.
- End
Time float64Offset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - Start
Time float64Offset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - Svg
Content string - Text
Content string
- definition String
- Video transcoding template ID.
- end
Time DoubleOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start
Time DoubleOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - svg
Content String - text
Content String
- definition string
- Video transcoding template ID.
- end
Time numberOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start
Time numberOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - svg
Content string - text
Content string
- definition str
- Video transcoding template ID.
- end_
time_ floatoffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start_
time_ floatoffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(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.
- end
Time NumberOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start
Time NumberOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - svg
Content String - text
Content String
GetVodProcedureTemplatesTemplateListMediaProcessTaskSnapshotByTimeOffsetTaskList
- Definition string
- Video transcoding template ID.
- Ext
Time List<string>Offset Lists - The list of screenshot time points.
s
and%
formats are supported: When a time point string ends withs
, 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 List<GetVod Procedure Templates Template List Media Process Task Snapshot By Time Offset Task List Watermark List> - 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.
- Ext
Time []stringOffset Lists - The list of screenshot time points.
s
and%
formats are supported: When a time point string ends withs
, 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 []GetVod Procedure Templates Template List Media Process Task Snapshot By Time Offset Task List Watermark List - 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.
- ext
Time List<String>Offset Lists - The list of screenshot time points.
s
and%
formats are supported: When a time point string ends withs
, 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 List<GetVod Procedure Templates Template List Media Process Task Snapshot By Time Offset Task List Watermark List> - 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.
- ext
Time string[]Offset Lists - The list of screenshot time points.
s
and%
formats are supported: When a time point string ends withs
, 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 GetVod Procedure Templates Template List Media Process Task Snapshot By Time Offset Task List Watermark List[] - 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_ Sequence[str]offset_ lists - The list of screenshot time points.
s
and%
formats are supported: When a time point string ends withs
, 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[GetVod Procedure Templates Template List Media Process Task Snapshot By Time Offset Task List Watermark List] - 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.
- ext
Time List<String>Offset Lists - The list of screenshot time points.
s
and%
formats are supported: When a time point string ends withs
, 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 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.
- End
Time doubleOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - Start
Time doubleOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - Svg
Content string - Text
Content string
- Definition string
- Video transcoding template ID.
- End
Time float64Offset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - Start
Time float64Offset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - Svg
Content string - Text
Content string
- definition String
- Video transcoding template ID.
- end
Time DoubleOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start
Time DoubleOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - svg
Content String - text
Content String
- definition string
- Video transcoding template ID.
- end
Time numberOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start
Time numberOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - svg
Content string - text
Content string
- definition str
- Video transcoding template ID.
- end_
time_ floatoffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start_
time_ floatoffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(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.
- end
Time NumberOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start
Time NumberOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - svg
Content String - text
Content String
GetVodProcedureTemplatesTemplateListMediaProcessTaskTranscodeTaskList
- Definition string
- Video transcoding template ID.
- Mosaic
Lists List<GetVod Procedure Templates Template List Media Process Task Transcode Task List Mosaic List> - List of blurs. Up to 10 ones can be supported.
- Watermark
Lists List<GetVod Procedure Templates Template List Media Process Task Transcode Task List Watermark List> - 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.
- Mosaic
Lists []GetVod Procedure Templates Template List Media Process Task Transcode Task List Mosaic List - List of blurs. Up to 10 ones can be supported.
- Watermark
Lists []GetVod Procedure Templates Template List Media Process Task Transcode Task List Watermark List - 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.
- mosaic
Lists List<GetVod Procedure Templates Template List Media Process Task Transcode Task List Mosaic List> - List of blurs. Up to 10 ones can be supported.
- watermark
Lists List<GetVod Procedure Templates Template List Media Process Task Transcode Task List Watermark List> - 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.
- mosaic
Lists GetVod Procedure Templates Template List Media Process Task Transcode Task List Mosaic List[] - List of blurs. Up to 10 ones can be supported.
- watermark
Lists GetVod Procedure Templates Template List Media Process Task Transcode Task List Watermark List[] - 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[GetVod Procedure Templates Template List Media Process Task Transcode Task List Mosaic List] - List of blurs. Up to 10 ones can be supported.
- watermark_
lists Sequence[GetVod Procedure Templates Template List Media Process Task Transcode Task List Watermark List] - 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.
- mosaic
Lists List<Property Map> - List of blurs. Up to 10 ones can be supported.
- watermark
Lists 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
- Coordinate
Origin string - Origin position, which currently can only be:
TopLeft
: the origin of coordinates is in the top-left corner of the video, and the origin of the blur is in the top-left corner of the image or text. - End
Time doubleOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - Height string
- Blur height.
%
andpx
formats are supported: If the string ends in%
, theheight
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 inpx
, theheight
of the blur will be in px; for example, 100px means that Height is 100 px. - Start
Time doubleOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - Width string
- Blur width.
%
andpx
formats are supported: If the string ends in%
, thewidth
of the blur will be the specified percentage of the video width; for example, 10% means thatwidth
is 10% of the video width; If the string ends inpx
, thewidth
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.
%
andpx
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 inpx
, 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.
%
andpx
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 inpx
, the YPos of the blur will be the specified px; for example, 100px means that YPos is 100 px.
- Coordinate
Origin string - Origin position, which currently can only be:
TopLeft
: the origin of coordinates is in the top-left corner of the video, and the origin of the blur is in the top-left corner of the image or text. - End
Time float64Offset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - Height string
- Blur height.
%
andpx
formats are supported: If the string ends in%
, theheight
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 inpx
, theheight
of the blur will be in px; for example, 100px means that Height is 100 px. - Start
Time float64Offset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - Width string
- Blur width.
%
andpx
formats are supported: If the string ends in%
, thewidth
of the blur will be the specified percentage of the video width; for example, 10% means thatwidth
is 10% of the video width; If the string ends inpx
, thewidth
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.
%
andpx
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 inpx
, 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.
%
andpx
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 inpx
, the YPos of the blur will be the specified px; for example, 100px means that YPos is 100 px.
- coordinate
Origin String - Origin position, which currently can only be:
TopLeft
: the origin of coordinates is in the top-left corner of the video, and the origin of the blur is in the top-left corner of the image or text. - end
Time DoubleOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - height String
- Blur height.
%
andpx
formats are supported: If the string ends in%
, theheight
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 inpx
, theheight
of the blur will be in px; for example, 100px means that Height is 100 px. - start
Time DoubleOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - width String
- Blur width.
%
andpx
formats are supported: If the string ends in%
, thewidth
of the blur will be the specified percentage of the video width; for example, 10% means thatwidth
is 10% of the video width; If the string ends inpx
, thewidth
of the blur will be in px; for example, 100px means that Width is 100 px. - x
Pos String - The horizontal position of the origin of the blur relative to the origin of coordinates of the video.
%
andpx
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 inpx
, the XPos of the blur will be the specified px; for example, 100px means that XPos is 100 px. - y
Pos String - Vertical position of the origin of blur relative to the origin of coordinates of video.
%
andpx
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 inpx
, the YPos of the blur will be the specified px; for example, 100px means that YPos is 100 px.
- coordinate
Origin string - Origin position, which currently can only be:
TopLeft
: the origin of coordinates is in the top-left corner of the video, and the origin of the blur is in the top-left corner of the image or text. - end
Time numberOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - height string
- Blur height.
%
andpx
formats are supported: If the string ends in%
, theheight
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 inpx
, theheight
of the blur will be in px; for example, 100px means that Height is 100 px. - start
Time numberOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - width string
- Blur width.
%
andpx
formats are supported: If the string ends in%
, thewidth
of the blur will be the specified percentage of the video width; for example, 10% means thatwidth
is 10% of the video width; If the string ends inpx
, thewidth
of the blur will be in px; for example, 100px means that Width is 100 px. - x
Pos string - The horizontal position of the origin of the blur relative to the origin of coordinates of the video.
%
andpx
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 inpx
, the XPos of the blur will be the specified px; for example, 100px means that XPos is 100 px. - y
Pos string - Vertical position of the origin of blur relative to the origin of coordinates of video.
%
andpx
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 inpx
, 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_ floatoffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - height str
- Blur height.
%
andpx
formats are supported: If the string ends in%
, theheight
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 inpx
, theheight
of the blur will be in px; for example, 100px means that Height is 100 px. - start_
time_ floatoffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - width str
- Blur width.
%
andpx
formats are supported: If the string ends in%
, thewidth
of the blur will be the specified percentage of the video width; for example, 10% means thatwidth
is 10% of the video width; If the string ends inpx
, thewidth
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.
%
andpx
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 inpx
, 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.
%
andpx
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 inpx
, the YPos of the blur will be the specified px; for example, 100px means that YPos is 100 px.
- coordinate
Origin String - Origin position, which currently can only be:
TopLeft
: the origin of coordinates is in the top-left corner of the video, and the origin of the blur is in the top-left corner of the image or text. - end
Time NumberOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - height String
- Blur height.
%
andpx
formats are supported: If the string ends in%
, theheight
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 inpx
, theheight
of the blur will be in px; for example, 100px means that Height is 100 px. - start
Time NumberOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - width String
- Blur width.
%
andpx
formats are supported: If the string ends in%
, thewidth
of the blur will be the specified percentage of the video width; for example, 10% means thatwidth
is 10% of the video width; If the string ends inpx
, thewidth
of the blur will be in px; for example, 100px means that Width is 100 px. - x
Pos String - The horizontal position of the origin of the blur relative to the origin of coordinates of the video.
%
andpx
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 inpx
, the XPos of the blur will be the specified px; for example, 100px means that XPos is 100 px. - y
Pos String - Vertical position of the origin of blur relative to the origin of coordinates of video.
%
andpx
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 inpx
, 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.
- End
Time doubleOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - Start
Time doubleOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - Svg
Content string - Text
Content string
- Definition string
- Video transcoding template ID.
- End
Time float64Offset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - Start
Time float64Offset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - Svg
Content string - Text
Content string
- definition String
- Video transcoding template ID.
- end
Time DoubleOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start
Time DoubleOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - svg
Content String - text
Content String
- definition string
- Video transcoding template ID.
- end
Time numberOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start
Time numberOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - svg
Content string - text
Content string
- definition str
- Video transcoding template ID.
- end_
time_ floatoffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start_
time_ floatoffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(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.
- end
Time NumberOffset - End time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will exist till the last video frame; If this value is greater than0
(e.g., n), the blur will exist till second n; If this value is smaller than0
(e.g., -n), the blur will exist till second n before the last video frame. - start
Time NumberOffset - Start time offset of blur in seconds. If this parameter is left empty or
0
is entered, the blur will appear upon the first video frame. If this parameter is left empty or0
is entered, the blur will appear upon the first video frame; If this value is greater than0
(e.g., n), the blur will appear at second n after the first video frame; If this value is smaller than0
(e.g., -n), the blur will appear at second n before the last video frame. - svg
Content String - text
Content String
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloud
Terraform Provider.
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack