tencentcloud-sdk-nodejs-mps 4.1.147 → 4.1.149
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -254,6 +254,31 @@ export interface FrameRateConfig {
|
|
|
254
254
|
*/
|
|
255
255
|
Fps?: number;
|
|
256
256
|
}
|
|
257
|
+
/**
|
|
258
|
+
* ExtractBlindWatermark请求参数结构体
|
|
259
|
+
*/
|
|
260
|
+
export interface ExtractBlindWatermarkRequest {
|
|
261
|
+
/**
|
|
262
|
+
* 数字水印类型,可选值:<li>blind-basic:基础版权数字水印;</li><li>blind-abseq:ab序列版权数字水印;</li>
|
|
263
|
+
*/
|
|
264
|
+
Type: string;
|
|
265
|
+
/**
|
|
266
|
+
* 媒体处理的文件输入信息。
|
|
267
|
+
*/
|
|
268
|
+
InputInfo: MediaInputInfo;
|
|
269
|
+
/**
|
|
270
|
+
* 任务的事件通知信息,不填代表不获取事件通知。
|
|
271
|
+
*/
|
|
272
|
+
TaskNotifyConfig?: TaskNotifyConfig;
|
|
273
|
+
/**
|
|
274
|
+
* 提取数字水印任务配置
|
|
275
|
+
*/
|
|
276
|
+
ExtractBlindWatermarkConfig?: ExtractBlindWatermarkTaskConfig;
|
|
277
|
+
/**
|
|
278
|
+
* 资源ID,需要保证对应资源是开启状态。默认为账号主资源ID。
|
|
279
|
+
*/
|
|
280
|
+
ResourceId?: string;
|
|
281
|
+
}
|
|
257
282
|
/**
|
|
258
283
|
* 视频(音频)理解结果
|
|
259
284
|
*/
|
|
@@ -2617,31 +2642,25 @@ export interface WorkflowInfo {
|
|
|
2617
2642
|
UpdateTime: string;
|
|
2618
2643
|
}
|
|
2619
2644
|
/**
|
|
2620
|
-
*
|
|
2645
|
+
* ModifyProcessImageTemplate请求参数结构体
|
|
2621
2646
|
*/
|
|
2622
|
-
export interface
|
|
2647
|
+
export interface ModifyProcessImageTemplateRequest {
|
|
2623
2648
|
/**
|
|
2624
|
-
*
|
|
2625
|
-
<li>ON:开启;</li>
|
|
2626
|
-
<li>OFF:关闭。</li>
|
|
2627
|
-
默认值:ON。
|
|
2649
|
+
* 图片处理模板唯一标识。
|
|
2628
2650
|
*/
|
|
2629
|
-
|
|
2651
|
+
Definition: number;
|
|
2630
2652
|
/**
|
|
2631
|
-
*
|
|
2632
|
-
<li>lq:针对低清晰度有较多噪声视频的超分;</li>
|
|
2633
|
-
<li>hq:针对高清晰度视频超分。</li>
|
|
2634
|
-
默认值:lq。
|
|
2635
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2653
|
+
* 图片处理模板名称,长度限制:64个字符。
|
|
2636
2654
|
*/
|
|
2637
|
-
|
|
2655
|
+
Name?: string;
|
|
2638
2656
|
/**
|
|
2639
|
-
*
|
|
2640
|
-
<li>2:目前只支持 2 倍超分。</li>
|
|
2641
|
-
默认值:2。
|
|
2642
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2657
|
+
* 模板描述信息,长度限制256个字符。
|
|
2643
2658
|
*/
|
|
2644
|
-
|
|
2659
|
+
Comment?: string;
|
|
2660
|
+
/**
|
|
2661
|
+
* 图片处理模板参数。
|
|
2662
|
+
*/
|
|
2663
|
+
ProcessImageTemplate?: ImageTaskInput;
|
|
2645
2664
|
}
|
|
2646
2665
|
/**
|
|
2647
2666
|
* DeletePersonSample请求参数结构体
|
|
@@ -3121,6 +3140,19 @@ export interface CreateAdaptiveDynamicStreamingTemplateRequest {
|
|
|
3121
3140
|
*/
|
|
3122
3141
|
SegmentType?: string;
|
|
3123
3142
|
}
|
|
3143
|
+
/**
|
|
3144
|
+
* CreateProcessImageTemplate返回参数结构体
|
|
3145
|
+
*/
|
|
3146
|
+
export interface CreateProcessImageTemplateResponse {
|
|
3147
|
+
/**
|
|
3148
|
+
* 图片处理模板唯一标识
|
|
3149
|
+
*/
|
|
3150
|
+
Definition?: number;
|
|
3151
|
+
/**
|
|
3152
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3153
|
+
*/
|
|
3154
|
+
RequestId?: string;
|
|
3155
|
+
}
|
|
3124
3156
|
/**
|
|
3125
3157
|
* 创建的输入RTMP拉流的配置信息。
|
|
3126
3158
|
*/
|
|
@@ -3233,13 +3265,31 @@ export interface EditMediaTaskInput {
|
|
|
3233
3265
|
FileInfoSet?: Array<EditMediaFileInfo>;
|
|
3234
3266
|
}
|
|
3235
3267
|
/**
|
|
3236
|
-
*
|
|
3268
|
+
* DescribeImageSpriteTemplates请求参数结构体
|
|
3237
3269
|
*/
|
|
3238
|
-
export interface
|
|
3270
|
+
export interface DescribeImageSpriteTemplatesRequest {
|
|
3239
3271
|
/**
|
|
3240
|
-
*
|
|
3272
|
+
* 雪碧图模板唯一标识过滤条件,数组长度限制:100。
|
|
3241
3273
|
*/
|
|
3242
|
-
|
|
3274
|
+
Definitions?: Array<number | bigint>;
|
|
3275
|
+
/**
|
|
3276
|
+
* 分页偏移量,默认值:0。
|
|
3277
|
+
*/
|
|
3278
|
+
Offset?: number;
|
|
3279
|
+
/**
|
|
3280
|
+
* 返回记录条数,默认值:10,最大值:100。
|
|
3281
|
+
*/
|
|
3282
|
+
Limit?: number;
|
|
3283
|
+
/**
|
|
3284
|
+
* 模板类型过滤条件,可选值:
|
|
3285
|
+
<li>Preset:系统预置模板;</li>
|
|
3286
|
+
<li>Custom:用户自定义模板。</li>
|
|
3287
|
+
*/
|
|
3288
|
+
Type?: string;
|
|
3289
|
+
/**
|
|
3290
|
+
* 雪碧图模板标识过滤条件,长度限制:64 个字符。
|
|
3291
|
+
*/
|
|
3292
|
+
Name?: string;
|
|
3243
3293
|
}
|
|
3244
3294
|
/**
|
|
3245
3295
|
* 查询Event的配置信息。
|
|
@@ -3471,35 +3521,13 @@ export interface CreateStreamLinkEventRequest {
|
|
|
3471
3521
|
Description?: string;
|
|
3472
3522
|
}
|
|
3473
3523
|
/**
|
|
3474
|
-
*
|
|
3524
|
+
* DeleteProcessImageTemplate请求参数结构体
|
|
3475
3525
|
*/
|
|
3476
|
-
export interface
|
|
3477
|
-
/**
|
|
3478
|
-
* 素材名称,长度限制:20 个字符。
|
|
3479
|
-
*/
|
|
3480
|
-
Name: string;
|
|
3526
|
+
export interface DeleteProcessImageTemplateRequest {
|
|
3481
3527
|
/**
|
|
3482
|
-
*
|
|
3483
|
-
1. Recognition:用于内容识别,等价于 Recognition.Face。
|
|
3484
|
-
2. Review:用于不适宜内容识别,等价于 Review.Face。
|
|
3485
|
-
3. All:包含以上全部,等价于 1+2。
|
|
3486
|
-
*/
|
|
3487
|
-
Usages: Array<string>;
|
|
3488
|
-
/**
|
|
3489
|
-
* 素材描述,长度限制:1024 个字符。
|
|
3490
|
-
*/
|
|
3491
|
-
Description?: string;
|
|
3492
|
-
/**
|
|
3493
|
-
* 素材图片 [Base64](https://tools.ietf.org/html/rfc4648) 编码后的字符串,仅支持 jpeg、png 图片格式。数组长度限制:5 张图片。
|
|
3494
|
-
注意:图片必须是单人像五官较清晰的照片,像素不低于 200*200。
|
|
3495
|
-
*/
|
|
3496
|
-
FaceContents?: Array<string>;
|
|
3497
|
-
/**
|
|
3498
|
-
* 素材标签
|
|
3499
|
-
<li>数组长度限制:20 个标签;</li>
|
|
3500
|
-
<li>单个标签长度限制:128 个字符。</li>
|
|
3528
|
+
* 图片处理模板唯一标识。
|
|
3501
3529
|
*/
|
|
3502
|
-
|
|
3530
|
+
Definition?: number;
|
|
3503
3531
|
}
|
|
3504
3532
|
/**
|
|
3505
3533
|
* 图片任务输入参数
|
|
@@ -3609,17 +3637,31 @@ export interface CosInputInfo {
|
|
|
3609
3637
|
Object: string;
|
|
3610
3638
|
}
|
|
3611
3639
|
/**
|
|
3612
|
-
*
|
|
3640
|
+
* DescribeBlindWatermarkTemplates请求参数结构体
|
|
3613
3641
|
*/
|
|
3614
|
-
export interface
|
|
3642
|
+
export interface DescribeBlindWatermarkTemplatesRequest {
|
|
3615
3643
|
/**
|
|
3616
|
-
*
|
|
3644
|
+
* 数字水印模板唯一标识过滤条件,数组长度限制:100。
|
|
3617
3645
|
*/
|
|
3618
|
-
|
|
3646
|
+
Definitions?: Array<number | bigint>;
|
|
3619
3647
|
/**
|
|
3620
|
-
*
|
|
3648
|
+
* 数字水印模板标识过滤条件,长度限制:64 个字符。
|
|
3621
3649
|
*/
|
|
3622
|
-
|
|
3650
|
+
Name?: string;
|
|
3651
|
+
/**
|
|
3652
|
+
* 数字水印类型,可选值:<li>blind-basic:基础版权数字水印;</li><li>blind-nagra:Nagra取证水印;</li>
|
|
3653
|
+
*/
|
|
3654
|
+
Type?: string;
|
|
3655
|
+
/**
|
|
3656
|
+
* 分页偏移量,默认值:0。
|
|
3657
|
+
*/
|
|
3658
|
+
Offset?: number;
|
|
3659
|
+
/**
|
|
3660
|
+
* 返回记录条数
|
|
3661
|
+
<li>默认值:10;</li>
|
|
3662
|
+
<li>最大值:100。</li>
|
|
3663
|
+
*/
|
|
3664
|
+
Limit?: number;
|
|
3623
3665
|
}
|
|
3624
3666
|
/**
|
|
3625
3667
|
* 智能标签任务控制参数
|
|
@@ -4182,6 +4224,27 @@ export interface CreateOutputSRTSettingsDestinations {
|
|
|
4182
4224
|
*/
|
|
4183
4225
|
Port: number;
|
|
4184
4226
|
}
|
|
4227
|
+
/**
|
|
4228
|
+
* CreateBlindWatermarkTemplate请求参数结构体
|
|
4229
|
+
*/
|
|
4230
|
+
export interface CreateBlindWatermarkTemplateRequest {
|
|
4231
|
+
/**
|
|
4232
|
+
* 数字水印类型,可选值:<li>blind-basic:基础版权数字水印;</li><li>blind-nagra:NAGRA水印;</li>
|
|
4233
|
+
*/
|
|
4234
|
+
Type: string;
|
|
4235
|
+
/**
|
|
4236
|
+
* 数字水印文字内容,长度不超过64个字符,NAGRA水印类型的模板创建后不支持修改文字内容。
|
|
4237
|
+
*/
|
|
4238
|
+
TextContent: string;
|
|
4239
|
+
/**
|
|
4240
|
+
* 数字水印模板名称,支持中文、英文、数字、_、-和. 六种格式,长度限制:64 个字符。
|
|
4241
|
+
*/
|
|
4242
|
+
Name?: string;
|
|
4243
|
+
/**
|
|
4244
|
+
* 数字水印模板描述信息,长度限制:256 个字符。
|
|
4245
|
+
*/
|
|
4246
|
+
Comment?: string;
|
|
4247
|
+
}
|
|
4185
4248
|
/**
|
|
4186
4249
|
* RecognizeMediaForZhiXue请求参数结构体
|
|
4187
4250
|
*/
|
|
@@ -4508,6 +4571,19 @@ export interface PoliticalOcrReviewTemplateInfoForUpdate {
|
|
|
4508
4571
|
*/
|
|
4509
4572
|
ReviewConfidence?: number;
|
|
4510
4573
|
}
|
|
4574
|
+
/**
|
|
4575
|
+
* ExtractBlindWatermark返回参数结构体
|
|
4576
|
+
*/
|
|
4577
|
+
export interface ExtractBlindWatermarkResponse {
|
|
4578
|
+
/**
|
|
4579
|
+
* 任务 ID。
|
|
4580
|
+
*/
|
|
4581
|
+
TaskId?: string;
|
|
4582
|
+
/**
|
|
4583
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4584
|
+
*/
|
|
4585
|
+
RequestId?: string;
|
|
4586
|
+
}
|
|
4511
4587
|
/**
|
|
4512
4588
|
* 极速高清参数配置。
|
|
4513
4589
|
*/
|
|
@@ -4924,30 +5000,21 @@ export interface AiAnalysisTaskHorizontalToVerticalResult {
|
|
|
4924
5000
|
Output?: AiAnalysisTaskHorizontalToVerticalOutput;
|
|
4925
5001
|
}
|
|
4926
5002
|
/**
|
|
4927
|
-
*
|
|
5003
|
+
* 查询输入的RIST配置信息。
|
|
4928
5004
|
*/
|
|
4929
|
-
export interface
|
|
4930
|
-
/**
|
|
4931
|
-
* 任务状态,有 `PROCESSING`,`SUCCESS` 和 `FAIL` 三种
|
|
4932
|
-
*/
|
|
4933
|
-
Status?: string;
|
|
4934
|
-
/**
|
|
4935
|
-
* 错误码,0:成功,其他值:失败
|
|
4936
|
-
*/
|
|
4937
|
-
ErrCode?: number;
|
|
5005
|
+
export interface DescribeInputRISTSettings {
|
|
4938
5006
|
/**
|
|
4939
|
-
*
|
|
5007
|
+
* RIST模式,可选[LISTENER|CALLER],默认为LISTENER。
|
|
4940
5008
|
*/
|
|
4941
|
-
|
|
5009
|
+
Mode?: string;
|
|
4942
5010
|
/**
|
|
4943
|
-
*
|
|
5011
|
+
* RIST配置方案,可选[MAIN|SIMPLE],默认为MAIN。
|
|
4944
5012
|
*/
|
|
4945
|
-
|
|
5013
|
+
Profile?: string;
|
|
4946
5014
|
/**
|
|
4947
|
-
*
|
|
4948
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5015
|
+
* RIST缓冲区大小,单位为毫秒。最小值为50毫秒,最大值为5000毫秒。默认值:120
|
|
4949
5016
|
*/
|
|
4950
|
-
|
|
5017
|
+
Buffer?: number;
|
|
4951
5018
|
}
|
|
4952
5019
|
/**
|
|
4953
5020
|
* 创建的输入RTMP拉流源站配置信息。
|
|
@@ -5567,6 +5634,36 @@ export interface ModifyPersonSampleResponse {
|
|
|
5567
5634
|
*/
|
|
5568
5635
|
RequestId?: string;
|
|
5569
5636
|
}
|
|
5637
|
+
/**
|
|
5638
|
+
* 媒体质检任务结果类型
|
|
5639
|
+
*/
|
|
5640
|
+
export interface ScheduleQualityControlTaskResult {
|
|
5641
|
+
/**
|
|
5642
|
+
* 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
|
|
5643
|
+
*/
|
|
5644
|
+
Status?: string;
|
|
5645
|
+
/**
|
|
5646
|
+
* 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
|
|
5647
|
+
*/
|
|
5648
|
+
ErrCodeExt?: string;
|
|
5649
|
+
/**
|
|
5650
|
+
* 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
|
|
5651
|
+
*/
|
|
5652
|
+
ErrCode?: number;
|
|
5653
|
+
/**
|
|
5654
|
+
* 错误信息。
|
|
5655
|
+
*/
|
|
5656
|
+
Message?: string;
|
|
5657
|
+
/**
|
|
5658
|
+
* 媒体质检任务的输入。
|
|
5659
|
+
*/
|
|
5660
|
+
Input?: AiQualityControlTaskInput;
|
|
5661
|
+
/**
|
|
5662
|
+
* 媒体质检任务的输出。
|
|
5663
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5664
|
+
*/
|
|
5665
|
+
Output?: QualityControlData;
|
|
5666
|
+
}
|
|
5570
5667
|
/**
|
|
5571
5668
|
* 媒体质检输入参数类型
|
|
5572
5669
|
*/
|
|
@@ -5967,6 +6064,20 @@ export interface MediaContentReviewOcrTextSegmentItem {
|
|
|
5967
6064
|
*/
|
|
5968
6065
|
PicUrlExpireTime?: string;
|
|
5969
6066
|
}
|
|
6067
|
+
/**
|
|
6068
|
+
* 智能精彩片段结果信息
|
|
6069
|
+
*/
|
|
6070
|
+
export interface AiAnalysisTaskHighlightOutput {
|
|
6071
|
+
/**
|
|
6072
|
+
* 视频智能精彩片段列表。
|
|
6073
|
+
*/
|
|
6074
|
+
HighlightSet?: Array<MediaAiAnalysisHighlightItem>;
|
|
6075
|
+
/**
|
|
6076
|
+
* 精彩片段的存储位置。
|
|
6077
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6078
|
+
*/
|
|
6079
|
+
OutputStorage?: TaskOutputStorage;
|
|
6080
|
+
}
|
|
5970
6081
|
/**
|
|
5971
6082
|
* StopStreamLinkFlow请求参数结构体
|
|
5972
6083
|
*/
|
|
@@ -5976,6 +6087,21 @@ export interface StopStreamLinkFlowRequest {
|
|
|
5976
6087
|
*/
|
|
5977
6088
|
FlowId: string;
|
|
5978
6089
|
}
|
|
6090
|
+
/**
|
|
6091
|
+
* 智能字幕翻译的输入。
|
|
6092
|
+
*/
|
|
6093
|
+
export interface SmartSubtitleTaskResultInput {
|
|
6094
|
+
/**
|
|
6095
|
+
* 智能字幕模板 ID。
|
|
6096
|
+
*/
|
|
6097
|
+
Definition?: number;
|
|
6098
|
+
/**
|
|
6099
|
+
* 智能字幕自定义参数,当 Definition 填 0 时有效。
|
|
6100
|
+
该参数用于高度定制场景,建议您优先使用 Definition 指定智能字幕参数。
|
|
6101
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6102
|
+
*/
|
|
6103
|
+
RawParameter?: RawSmartSubtitleParameter;
|
|
6104
|
+
}
|
|
5979
6105
|
/**
|
|
5980
6106
|
* DescribeAdaptiveDynamicStreamingTemplates请求参数结构体
|
|
5981
6107
|
*/
|
|
@@ -6191,6 +6317,15 @@ export interface CreateContentReviewTemplateResponse {
|
|
|
6191
6317
|
*/
|
|
6192
6318
|
RequestId?: string;
|
|
6193
6319
|
}
|
|
6320
|
+
/**
|
|
6321
|
+
* ModifyBlindWatermarkTemplate返回参数结构体
|
|
6322
|
+
*/
|
|
6323
|
+
export interface ModifyBlindWatermarkTemplateResponse {
|
|
6324
|
+
/**
|
|
6325
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6326
|
+
*/
|
|
6327
|
+
RequestId?: string;
|
|
6328
|
+
}
|
|
6194
6329
|
/**
|
|
6195
6330
|
* 违禁任务控制参数
|
|
6196
6331
|
*/
|
|
@@ -7531,18 +7666,13 @@ export interface CreateAsrHotwordsResponse {
|
|
|
7531
7666
|
RequestId?: string;
|
|
7532
7667
|
}
|
|
7533
7668
|
/**
|
|
7534
|
-
*
|
|
7669
|
+
* DeleteBlindWatermarkTemplate返回参数结构体
|
|
7535
7670
|
*/
|
|
7536
|
-
export interface
|
|
7671
|
+
export interface DeleteBlindWatermarkTemplateResponse {
|
|
7537
7672
|
/**
|
|
7538
|
-
*
|
|
7539
|
-
*/
|
|
7540
|
-
HighlightSet?: Array<MediaAiAnalysisHighlightItem>;
|
|
7541
|
-
/**
|
|
7542
|
-
* 精彩片段的存储位置。
|
|
7543
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
7673
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7544
7674
|
*/
|
|
7545
|
-
|
|
7675
|
+
RequestId?: string;
|
|
7546
7676
|
}
|
|
7547
7677
|
/**
|
|
7548
7678
|
* 质检项配置
|
|
@@ -7680,6 +7810,23 @@ export interface AdaptiveDynamicStreamingInfoItem {
|
|
|
7680
7810
|
*/
|
|
7681
7811
|
Storage?: TaskOutputStorage;
|
|
7682
7812
|
}
|
|
7813
|
+
/**
|
|
7814
|
+
* DescribeProcessImageTemplates返回参数结构体
|
|
7815
|
+
*/
|
|
7816
|
+
export interface DescribeProcessImageTemplatesResponse {
|
|
7817
|
+
/**
|
|
7818
|
+
* 符合过滤条件的记录总数。
|
|
7819
|
+
*/
|
|
7820
|
+
TotalCount?: number;
|
|
7821
|
+
/**
|
|
7822
|
+
* 图片处理模板详情列表。
|
|
7823
|
+
*/
|
|
7824
|
+
ProcessImageTemplateSet?: Array<ProcessImageTemplate>;
|
|
7825
|
+
/**
|
|
7826
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7827
|
+
*/
|
|
7828
|
+
RequestId?: string;
|
|
7829
|
+
}
|
|
7683
7830
|
/**
|
|
7684
7831
|
* ProcessMedia请求参数结构体
|
|
7685
7832
|
*/
|
|
@@ -7804,6 +7951,19 @@ export interface DescribeOutputRTSPPullSettings {
|
|
|
7804
7951
|
*/
|
|
7805
7952
|
ServerUrls: Array<DescribeOutputRTSPPullServerUrl>;
|
|
7806
7953
|
}
|
|
7954
|
+
/**
|
|
7955
|
+
* CreateBlindWatermarkTemplate返回参数结构体
|
|
7956
|
+
*/
|
|
7957
|
+
export interface CreateBlindWatermarkTemplateResponse {
|
|
7958
|
+
/**
|
|
7959
|
+
* 数字水印模板唯一标识。
|
|
7960
|
+
*/
|
|
7961
|
+
Definition?: number;
|
|
7962
|
+
/**
|
|
7963
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7964
|
+
*/
|
|
7965
|
+
RequestId?: string;
|
|
7966
|
+
}
|
|
7807
7967
|
/**
|
|
7808
7968
|
* 文本全文识别结果。
|
|
7809
7969
|
*/
|
|
@@ -7848,6 +8008,15 @@ export interface AiAnalysisTaskSegmentOutput {
|
|
|
7848
8008
|
*/
|
|
7849
8009
|
Abstract?: string;
|
|
7850
8010
|
}
|
|
8011
|
+
/**
|
|
8012
|
+
* ModifyProcessImageTemplate返回参数结构体
|
|
8013
|
+
*/
|
|
8014
|
+
export interface ModifyProcessImageTemplateResponse {
|
|
8015
|
+
/**
|
|
8016
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
8017
|
+
*/
|
|
8018
|
+
RequestId?: string;
|
|
8019
|
+
}
|
|
7851
8020
|
/**
|
|
7852
8021
|
* 视频编辑/合成任务 视频元素信息。
|
|
7853
8022
|
*/
|
|
@@ -9734,34 +9903,37 @@ export interface CreateMediaEvaluationRequest {
|
|
|
9734
9903
|
SessionContext?: string;
|
|
9735
9904
|
}
|
|
9736
9905
|
/**
|
|
9737
|
-
*
|
|
9906
|
+
* 数字水印模板详情
|
|
9738
9907
|
*/
|
|
9739
|
-
export interface
|
|
9908
|
+
export interface BlindWatermarkTemplate {
|
|
9740
9909
|
/**
|
|
9741
|
-
*
|
|
9910
|
+
* 数字水印模板唯一标识。
|
|
9742
9911
|
*/
|
|
9743
|
-
|
|
9912
|
+
Definition?: number;
|
|
9744
9913
|
/**
|
|
9745
|
-
*
|
|
9914
|
+
* 数字水印类型,可选值:<li>blind-basic:基础版权数字水印;</li><li>blind-nagra:NAGRA取证水印;</li>
|
|
9746
9915
|
*/
|
|
9747
|
-
|
|
9916
|
+
Type?: string;
|
|
9748
9917
|
/**
|
|
9749
|
-
*
|
|
9918
|
+
* 数字水印模板名称。
|
|
9750
9919
|
*/
|
|
9751
|
-
|
|
9920
|
+
Name?: string;
|
|
9752
9921
|
/**
|
|
9753
|
-
*
|
|
9922
|
+
* 数字水印模板文本内容,长度不超过64个字符。
|
|
9754
9923
|
*/
|
|
9755
|
-
|
|
9924
|
+
TextContent?: string;
|
|
9756
9925
|
/**
|
|
9757
|
-
*
|
|
9926
|
+
* 数字水印模板描述信息。
|
|
9758
9927
|
*/
|
|
9759
|
-
|
|
9928
|
+
Comment?: string;
|
|
9760
9929
|
/**
|
|
9761
|
-
*
|
|
9762
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
9930
|
+
* 数字水印模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
|
|
9763
9931
|
*/
|
|
9764
|
-
|
|
9932
|
+
CreateTime?: string;
|
|
9933
|
+
/**
|
|
9934
|
+
* 数字水印模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
|
|
9935
|
+
*/
|
|
9936
|
+
UpdateTime?: string;
|
|
9765
9937
|
}
|
|
9766
9938
|
/**
|
|
9767
9939
|
* 涉敏任务控制参数。
|
|
@@ -10289,31 +10461,13 @@ export interface RawImageWatermarkInput {
|
|
|
10289
10461
|
RepeatType?: string;
|
|
10290
10462
|
}
|
|
10291
10463
|
/**
|
|
10292
|
-
*
|
|
10464
|
+
* DeleteAIAnalysisTemplate返回参数结构体
|
|
10293
10465
|
*/
|
|
10294
|
-
export interface
|
|
10295
|
-
/**
|
|
10296
|
-
* 雪碧图模板唯一标识过滤条件,数组长度限制:100。
|
|
10297
|
-
*/
|
|
10298
|
-
Definitions?: Array<number | bigint>;
|
|
10299
|
-
/**
|
|
10300
|
-
* 分页偏移量,默认值:0。
|
|
10301
|
-
*/
|
|
10302
|
-
Offset?: number;
|
|
10303
|
-
/**
|
|
10304
|
-
* 返回记录条数,默认值:10,最大值:100。
|
|
10305
|
-
*/
|
|
10306
|
-
Limit?: number;
|
|
10307
|
-
/**
|
|
10308
|
-
* 模板类型过滤条件,可选值:
|
|
10309
|
-
<li>Preset:系统预置模板;</li>
|
|
10310
|
-
<li>Custom:用户自定义模板。</li>
|
|
10311
|
-
*/
|
|
10312
|
-
Type?: string;
|
|
10466
|
+
export interface DeleteAIAnalysisTemplateResponse {
|
|
10313
10467
|
/**
|
|
10314
|
-
*
|
|
10468
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
10315
10469
|
*/
|
|
10316
|
-
|
|
10470
|
+
RequestId?: string;
|
|
10317
10471
|
}
|
|
10318
10472
|
/**
|
|
10319
10473
|
* CreateQualityControlTemplate请求参数结构体
|
|
@@ -10503,6 +10657,15 @@ export interface DescribeInput {
|
|
|
10503
10657
|
*/
|
|
10504
10658
|
StreamUrls?: Array<StreamUrlDetail>;
|
|
10505
10659
|
}
|
|
10660
|
+
/**
|
|
10661
|
+
* DeleteBlindWatermarkTemplate请求参数结构体
|
|
10662
|
+
*/
|
|
10663
|
+
export interface DeleteBlindWatermarkTemplateRequest {
|
|
10664
|
+
/**
|
|
10665
|
+
* 数字水印模板唯一标识。
|
|
10666
|
+
*/
|
|
10667
|
+
Definition: number;
|
|
10668
|
+
}
|
|
10506
10669
|
/**
|
|
10507
10670
|
* DeleteTranscodeTemplate请求参数结构体
|
|
10508
10671
|
*/
|
|
@@ -10613,6 +10776,23 @@ export interface ProhibitedConfigureInfo {
|
|
|
10613
10776
|
*/
|
|
10614
10777
|
OcrReviewInfo?: ProhibitedOcrReviewTemplateInfo;
|
|
10615
10778
|
}
|
|
10779
|
+
/**
|
|
10780
|
+
* CreateProcessImageTemplate请求参数结构体
|
|
10781
|
+
*/
|
|
10782
|
+
export interface CreateProcessImageTemplateRequest {
|
|
10783
|
+
/**
|
|
10784
|
+
* 图片处理模板。
|
|
10785
|
+
*/
|
|
10786
|
+
ProcessImageTemplate: ImageTaskInput;
|
|
10787
|
+
/**
|
|
10788
|
+
* 图片处理模板名称,长度限制:64个字符。
|
|
10789
|
+
*/
|
|
10790
|
+
Name?: string;
|
|
10791
|
+
/**
|
|
10792
|
+
* 图片处理模板描述信息,长度限制:256个字符。
|
|
10793
|
+
*/
|
|
10794
|
+
Comment?: string;
|
|
10795
|
+
}
|
|
10616
10796
|
/**
|
|
10617
10797
|
* DescribeStreamLinkFlowSRTStatistics返回参数结构体
|
|
10618
10798
|
*/
|
|
@@ -10765,19 +10945,21 @@ export interface BlindWatermarkInput {
|
|
|
10765
10945
|
Definition: number;
|
|
10766
10946
|
}
|
|
10767
10947
|
/**
|
|
10768
|
-
*
|
|
10948
|
+
* DescribeBlindWatermarkTemplates返回参数结构体
|
|
10769
10949
|
*/
|
|
10770
|
-
export interface
|
|
10950
|
+
export interface DescribeBlindWatermarkTemplatesResponse {
|
|
10771
10951
|
/**
|
|
10772
|
-
*
|
|
10952
|
+
* 符合过滤条件的记录总数。
|
|
10773
10953
|
*/
|
|
10774
|
-
|
|
10954
|
+
TotalCount?: number;
|
|
10775
10955
|
/**
|
|
10776
|
-
*
|
|
10777
|
-
该参数用于高度定制场景,建议您优先使用 Definition 指定智能字幕参数。
|
|
10778
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
10956
|
+
* 数字水印模板详情列表。
|
|
10779
10957
|
*/
|
|
10780
|
-
|
|
10958
|
+
BlindWatermarkTemplateSet?: Array<BlindWatermarkTemplate>;
|
|
10959
|
+
/**
|
|
10960
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
10961
|
+
*/
|
|
10962
|
+
RequestId?: string;
|
|
10781
10963
|
}
|
|
10782
10964
|
/**
|
|
10783
10965
|
* 图片水印模板输入参数
|
|
@@ -10808,6 +10990,19 @@ export interface ImageWatermarkInputForUpdate {
|
|
|
10808
10990
|
*/
|
|
10809
10991
|
RepeatType?: string;
|
|
10810
10992
|
}
|
|
10993
|
+
/**
|
|
10994
|
+
* CreateSchedule返回参数结构体
|
|
10995
|
+
*/
|
|
10996
|
+
export interface CreateScheduleResponse {
|
|
10997
|
+
/**
|
|
10998
|
+
* 编排 ID。
|
|
10999
|
+
*/
|
|
11000
|
+
ScheduleId?: number;
|
|
11001
|
+
/**
|
|
11002
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
11003
|
+
*/
|
|
11004
|
+
RequestId?: string;
|
|
11005
|
+
}
|
|
10811
11006
|
/**
|
|
10812
11007
|
* DescribeAIAnalysisTemplates请求参数结构体
|
|
10813
11008
|
*/
|
|
@@ -11535,6 +11730,51 @@ export interface DescribeTranscodeTemplatesResponse {
|
|
|
11535
11730
|
*/
|
|
11536
11731
|
RequestId?: string;
|
|
11537
11732
|
}
|
|
11733
|
+
/**
|
|
11734
|
+
* 直播实时翻译结果
|
|
11735
|
+
*/
|
|
11736
|
+
export interface LiveStreamTransTextRecognitionResult {
|
|
11737
|
+
/**
|
|
11738
|
+
* 识别文本。
|
|
11739
|
+
*/
|
|
11740
|
+
Text?: string;
|
|
11741
|
+
/**
|
|
11742
|
+
* 翻译片段起始的 PTS 时间,单位:秒。
|
|
11743
|
+
*/
|
|
11744
|
+
StartPtsTime?: number;
|
|
11745
|
+
/**
|
|
11746
|
+
* 翻译片段终止的 PTS 时间,单位:秒。
|
|
11747
|
+
*/
|
|
11748
|
+
EndPtsTime?: number;
|
|
11749
|
+
/**
|
|
11750
|
+
* 翻译片段置信度。取值:0~100。
|
|
11751
|
+
*/
|
|
11752
|
+
Confidence?: number;
|
|
11753
|
+
/**
|
|
11754
|
+
* 翻译文本。
|
|
11755
|
+
*/
|
|
11756
|
+
Trans?: string;
|
|
11757
|
+
/**
|
|
11758
|
+
* 翻译开始UTC时间。
|
|
11759
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11760
|
+
*/
|
|
11761
|
+
StartTime?: string;
|
|
11762
|
+
/**
|
|
11763
|
+
* 翻译结束UTC时间。
|
|
11764
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11765
|
+
*/
|
|
11766
|
+
EndTime?: string;
|
|
11767
|
+
/**
|
|
11768
|
+
* 稳态标记。
|
|
11769
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11770
|
+
*/
|
|
11771
|
+
SteadyState?: boolean;
|
|
11772
|
+
/**
|
|
11773
|
+
* websocket与trtc实时翻译的UserId
|
|
11774
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11775
|
+
*/
|
|
11776
|
+
UserId?: string;
|
|
11777
|
+
}
|
|
11538
11778
|
/**
|
|
11539
11779
|
* 雪碧图模板详情
|
|
11540
11780
|
*/
|
|
@@ -13312,6 +13552,11 @@ export interface ParseNotificationResponse {
|
|
|
13312
13552
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
13313
13553
|
*/
|
|
13314
13554
|
BatchTaskEvent?: BatchSubTaskResult;
|
|
13555
|
+
/**
|
|
13556
|
+
* 数字水印提取任务信息,仅当 EventType 为 ExtractBlindWatermark,该字段有值。
|
|
13557
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13558
|
+
*/
|
|
13559
|
+
ExtractBlindWatermarkTask?: ExtractBlindWatermarkTask;
|
|
13315
13560
|
/**
|
|
13316
13561
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
13317
13562
|
*/
|
|
@@ -13364,6 +13609,33 @@ export interface CreateSampleSnapshotTemplateResponse {
|
|
|
13364
13609
|
*/
|
|
13365
13610
|
RequestId?: string;
|
|
13366
13611
|
}
|
|
13612
|
+
/**
|
|
13613
|
+
* 超分配置
|
|
13614
|
+
*/
|
|
13615
|
+
export interface SuperResolutionConfig {
|
|
13616
|
+
/**
|
|
13617
|
+
* 能力配置开关,可选值:
|
|
13618
|
+
<li>ON:开启;</li>
|
|
13619
|
+
<li>OFF:关闭。</li>
|
|
13620
|
+
默认值:ON。
|
|
13621
|
+
*/
|
|
13622
|
+
Switch?: string;
|
|
13623
|
+
/**
|
|
13624
|
+
* 类型,可选值:
|
|
13625
|
+
<li>lq:针对低清晰度有较多噪声视频的超分;</li>
|
|
13626
|
+
<li>hq:针对高清晰度视频超分。</li>
|
|
13627
|
+
默认值:lq。
|
|
13628
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13629
|
+
*/
|
|
13630
|
+
Type?: string;
|
|
13631
|
+
/**
|
|
13632
|
+
* 超分倍数,可选值:
|
|
13633
|
+
<li>2:目前只支持 2 倍超分。</li>
|
|
13634
|
+
默认值:2。
|
|
13635
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13636
|
+
*/
|
|
13637
|
+
Size?: number;
|
|
13638
|
+
}
|
|
13367
13639
|
/**
|
|
13368
13640
|
* CreateLiveRecordTemplate返回参数结构体
|
|
13369
13641
|
*/
|
|
@@ -13839,21 +14111,30 @@ export interface AsrFullTextConfigureInfo {
|
|
|
13839
14111
|
SourceLanguage?: string;
|
|
13840
14112
|
}
|
|
13841
14113
|
/**
|
|
13842
|
-
*
|
|
14114
|
+
* 视频去重结果数据结构
|
|
13843
14115
|
*/
|
|
13844
|
-
export interface
|
|
14116
|
+
export interface AiAnalysisTaskVideoRemakeResult {
|
|
13845
14117
|
/**
|
|
13846
|
-
*
|
|
14118
|
+
* 任务状态,有 `PROCESSING`,`SUCCESS` 和 `FAIL` 三种
|
|
13847
14119
|
*/
|
|
13848
|
-
|
|
14120
|
+
Status?: string;
|
|
13849
14121
|
/**
|
|
13850
|
-
*
|
|
14122
|
+
* 错误码,0:成功,其他值:失败
|
|
13851
14123
|
*/
|
|
13852
|
-
|
|
14124
|
+
ErrCode?: number;
|
|
13853
14125
|
/**
|
|
13854
|
-
*
|
|
14126
|
+
* 错误信息
|
|
13855
14127
|
*/
|
|
13856
|
-
|
|
14128
|
+
Message?: string;
|
|
14129
|
+
/**
|
|
14130
|
+
* 去重任务输入
|
|
14131
|
+
*/
|
|
14132
|
+
Input?: AiAnalysisTaskVideoRemakeInput;
|
|
14133
|
+
/**
|
|
14134
|
+
* 去重任务输出
|
|
14135
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14136
|
+
*/
|
|
14137
|
+
Output?: AiAnalysisTaskVideoRemakeOutput;
|
|
13857
14138
|
}
|
|
13858
14139
|
/**
|
|
13859
14140
|
* 去伪影(毛刺)配置
|
|
@@ -15350,49 +15631,13 @@ export interface DescribeInputRTMPSettings {
|
|
|
15350
15631
|
StreamKey: string;
|
|
15351
15632
|
}
|
|
15352
15633
|
/**
|
|
15353
|
-
*
|
|
15634
|
+
* DeleteProcessImageTemplate返回参数结构体
|
|
15354
15635
|
*/
|
|
15355
|
-
export interface
|
|
15356
|
-
/**
|
|
15357
|
-
* 识别文本。
|
|
15358
|
-
*/
|
|
15359
|
-
Text?: string;
|
|
15360
|
-
/**
|
|
15361
|
-
* 翻译片段起始的 PTS 时间,单位:秒。
|
|
15362
|
-
*/
|
|
15363
|
-
StartPtsTime?: number;
|
|
15364
|
-
/**
|
|
15365
|
-
* 翻译片段终止的 PTS 时间,单位:秒。
|
|
15366
|
-
*/
|
|
15367
|
-
EndPtsTime?: number;
|
|
15368
|
-
/**
|
|
15369
|
-
* 翻译片段置信度。取值:0~100。
|
|
15370
|
-
*/
|
|
15371
|
-
Confidence?: number;
|
|
15372
|
-
/**
|
|
15373
|
-
* 翻译文本。
|
|
15374
|
-
*/
|
|
15375
|
-
Trans?: string;
|
|
15376
|
-
/**
|
|
15377
|
-
* 翻译开始UTC时间。
|
|
15378
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
15379
|
-
*/
|
|
15380
|
-
StartTime?: string;
|
|
15381
|
-
/**
|
|
15382
|
-
* 翻译结束UTC时间。
|
|
15383
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
15384
|
-
*/
|
|
15385
|
-
EndTime?: string;
|
|
15386
|
-
/**
|
|
15387
|
-
* 稳态标记。
|
|
15388
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
15389
|
-
*/
|
|
15390
|
-
SteadyState?: boolean;
|
|
15636
|
+
export interface DeleteProcessImageTemplateResponse {
|
|
15391
15637
|
/**
|
|
15392
|
-
*
|
|
15393
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
15638
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
15394
15639
|
*/
|
|
15395
|
-
|
|
15640
|
+
RequestId?: string;
|
|
15396
15641
|
}
|
|
15397
15642
|
/**
|
|
15398
15643
|
* DescribeStreamLinkSecurityGroups请求参数结构体
|
|
@@ -17076,6 +17321,41 @@ export interface DescribeSampleSnapshotTemplatesResponse {
|
|
|
17076
17321
|
*/
|
|
17077
17322
|
RequestId?: string;
|
|
17078
17323
|
}
|
|
17324
|
+
/**
|
|
17325
|
+
* DescribeProcessImageTemplates请求参数结构体
|
|
17326
|
+
*/
|
|
17327
|
+
export interface DescribeProcessImageTemplatesRequest {
|
|
17328
|
+
/**
|
|
17329
|
+
* 图片处理模板唯一标识过滤条件,数组长度限制:100。
|
|
17330
|
+
*/
|
|
17331
|
+
Definitions?: Array<number | bigint>;
|
|
17332
|
+
/**
|
|
17333
|
+
* 分页偏移量,默认值:0。
|
|
17334
|
+
*/
|
|
17335
|
+
Offset?: number;
|
|
17336
|
+
/**
|
|
17337
|
+
* 返回记录条数 默认值:10;最大值:100。
|
|
17338
|
+
*/
|
|
17339
|
+
Limit?: number;
|
|
17340
|
+
/**
|
|
17341
|
+
* 图片处理模板标识过滤条件。
|
|
17342
|
+
*/
|
|
17343
|
+
Name?: string;
|
|
17344
|
+
/**
|
|
17345
|
+
* 排序方式,OrderBy设置后才有效,可选值: 0:升序 1:降序 默认 0。
|
|
17346
|
+
*/
|
|
17347
|
+
OrderType?: number;
|
|
17348
|
+
/**
|
|
17349
|
+
* 排序字段,可选值:
|
|
17350
|
+
Definition:模板唯一标识;
|
|
17351
|
+
默认值:创建时间。
|
|
17352
|
+
*/
|
|
17353
|
+
OrderBy?: string;
|
|
17354
|
+
/**
|
|
17355
|
+
* 模板类型过滤条件,可选值: <li>Preset:系统预置模板;</li> <li>Custom:用户自定义模板。</li>
|
|
17356
|
+
*/
|
|
17357
|
+
Type?: string;
|
|
17358
|
+
}
|
|
17079
17359
|
/**
|
|
17080
17360
|
* 视频编辑/合成任务 图片元素信息。
|
|
17081
17361
|
*/
|
|
@@ -18550,6 +18830,27 @@ export interface AiReviewTaskPornAsrResult {
|
|
|
18550
18830
|
*/
|
|
18551
18831
|
Output?: AiReviewPornAsrTaskOutput;
|
|
18552
18832
|
}
|
|
18833
|
+
/**
|
|
18834
|
+
* ModifyBlindWatermarkTemplate请求参数结构体
|
|
18835
|
+
*/
|
|
18836
|
+
export interface ModifyBlindWatermarkTemplateRequest {
|
|
18837
|
+
/**
|
|
18838
|
+
* 数字水印模板唯一标识。
|
|
18839
|
+
*/
|
|
18840
|
+
Definition: number;
|
|
18841
|
+
/**
|
|
18842
|
+
* 数字水印模板名称,支持 中文、英文、数字、_、-和. 六种格式,长度限制:64 个字符。
|
|
18843
|
+
*/
|
|
18844
|
+
Name?: string;
|
|
18845
|
+
/**
|
|
18846
|
+
* 数字水印模板描述信息,长度限制:256 个字符。
|
|
18847
|
+
*/
|
|
18848
|
+
Comment?: string;
|
|
18849
|
+
/**
|
|
18850
|
+
* 数字水印文字内容,长度不超过64个字符,NAGRA水印类型的模板不支持修改文字内容。
|
|
18851
|
+
*/
|
|
18852
|
+
TextContent?: string;
|
|
18853
|
+
}
|
|
18553
18854
|
/**
|
|
18554
18855
|
* DescribeStreamLinkFlow请求参数结构体
|
|
18555
18856
|
*/
|
|
@@ -19485,6 +19786,37 @@ export interface PoliticalAsrReviewTemplateInfo {
|
|
|
19485
19786
|
*/
|
|
19486
19787
|
ReviewConfidence?: number;
|
|
19487
19788
|
}
|
|
19789
|
+
/**
|
|
19790
|
+
* CreatePersonSample请求参数结构体
|
|
19791
|
+
*/
|
|
19792
|
+
export interface CreatePersonSampleRequest {
|
|
19793
|
+
/**
|
|
19794
|
+
* 素材名称,长度限制:20 个字符。
|
|
19795
|
+
*/
|
|
19796
|
+
Name: string;
|
|
19797
|
+
/**
|
|
19798
|
+
* 素材应用场景,可选值:
|
|
19799
|
+
1. Recognition:用于内容识别,等价于 Recognition.Face。
|
|
19800
|
+
2. Review:用于不适宜内容识别,等价于 Review.Face。
|
|
19801
|
+
3. All:包含以上全部,等价于 1+2。
|
|
19802
|
+
*/
|
|
19803
|
+
Usages: Array<string>;
|
|
19804
|
+
/**
|
|
19805
|
+
* 素材描述,长度限制:1024 个字符。
|
|
19806
|
+
*/
|
|
19807
|
+
Description?: string;
|
|
19808
|
+
/**
|
|
19809
|
+
* 素材图片 [Base64](https://tools.ietf.org/html/rfc4648) 编码后的字符串,仅支持 jpeg、png 图片格式。数组长度限制:5 张图片。
|
|
19810
|
+
注意:图片必须是单人像五官较清晰的照片,像素不低于 200*200。
|
|
19811
|
+
*/
|
|
19812
|
+
FaceContents?: Array<string>;
|
|
19813
|
+
/**
|
|
19814
|
+
* 素材标签
|
|
19815
|
+
<li>数组长度限制:20 个标签;</li>
|
|
19816
|
+
<li>单个标签长度限制:128 个字符。</li>
|
|
19817
|
+
*/
|
|
19818
|
+
Tags?: Array<string>;
|
|
19819
|
+
}
|
|
19488
19820
|
/**
|
|
19489
19821
|
* 智能字幕输入结构体
|
|
19490
19822
|
*/
|
|
@@ -19969,6 +20301,39 @@ export interface EditMediaTaskOutput {
|
|
|
19969
20301
|
*/
|
|
19970
20302
|
MetaData?: MediaMetaData;
|
|
19971
20303
|
}
|
|
20304
|
+
/**
|
|
20305
|
+
* 图片处理模板
|
|
20306
|
+
*/
|
|
20307
|
+
export interface ProcessImageTemplate {
|
|
20308
|
+
/**
|
|
20309
|
+
* 图片处理模板唯一标识。
|
|
20310
|
+
*/
|
|
20311
|
+
Definition?: number;
|
|
20312
|
+
/**
|
|
20313
|
+
* 图片处理模板名称。
|
|
20314
|
+
*/
|
|
20315
|
+
Name?: string;
|
|
20316
|
+
/**
|
|
20317
|
+
* 图片处理模板描述信息。
|
|
20318
|
+
*/
|
|
20319
|
+
Comment?: string;
|
|
20320
|
+
/**
|
|
20321
|
+
* 模板类型。
|
|
20322
|
+
*/
|
|
20323
|
+
Type?: string;
|
|
20324
|
+
/**
|
|
20325
|
+
* 图片处理模板配置参数。
|
|
20326
|
+
*/
|
|
20327
|
+
ProcessImageConfig?: ImageTaskInput;
|
|
20328
|
+
/**
|
|
20329
|
+
* 模板创建时间。
|
|
20330
|
+
*/
|
|
20331
|
+
CreateTime?: string;
|
|
20332
|
+
/**
|
|
20333
|
+
* 模板最后修改时间。
|
|
20334
|
+
*/
|
|
20335
|
+
UpdateTime?: string;
|
|
20336
|
+
}
|
|
19972
20337
|
/**
|
|
19973
20338
|
* 智能精彩集锦片段列表。
|
|
19974
20339
|
*/
|