tencentcloud-sdk-nodejs-mps 4.1.148 → 4.1.150
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
|
|
3526
|
+
export interface DeleteProcessImageTemplateRequest {
|
|
3477
3527
|
/**
|
|
3478
|
-
*
|
|
3479
|
-
*/
|
|
3480
|
-
Name: string;
|
|
3481
|
-
/**
|
|
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
|
*/
|
|
@@ -4787,6 +4863,110 @@ export interface ComposeTargetInfo {
|
|
|
4787
4863
|
*/
|
|
4788
4864
|
AudioStream?: ComposeAudioStream;
|
|
4789
4865
|
}
|
|
4866
|
+
/**
|
|
4867
|
+
* 任务统计数据。
|
|
4868
|
+
*/
|
|
4869
|
+
export interface TaskStatData {
|
|
4870
|
+
/**
|
|
4871
|
+
* 任务类型。
|
|
4872
|
+
<li>Transcode: 转码</li>
|
|
4873
|
+
<li>Enhance: 增强</li>
|
|
4874
|
+
<li>AIAnalysis: 智能分析</li>
|
|
4875
|
+
<li>AIRecognition: 智能识别</li>
|
|
4876
|
+
<li>AIReview: 内容审核</li>
|
|
4877
|
+
<li>Snapshot: 截图</li>
|
|
4878
|
+
<li>AnimatedGraphics: 转动图</li>
|
|
4879
|
+
<li>ImageProcess: 图片处理</li>
|
|
4880
|
+
*/
|
|
4881
|
+
TaskType?: string;
|
|
4882
|
+
/**
|
|
4883
|
+
* 任务数统计数据概览。
|
|
4884
|
+
<li>Transcode:用量单位为秒</li>
|
|
4885
|
+
<li>Enhance:用量单位为秒</li>
|
|
4886
|
+
<li>AIAnalysis:用量单位为秒</li>
|
|
4887
|
+
<li>AIRecognition:用量单位为秒</li>
|
|
4888
|
+
<li>AIReview:用量单位为秒</li>
|
|
4889
|
+
<li>Snapshot:用量单位为张</li>
|
|
4890
|
+
<li>AnimatedGraphics: 用量单位为秒</li>
|
|
4891
|
+
<li>ImageProcess: 用量单位为张</li>
|
|
4892
|
+
*/
|
|
4893
|
+
Summary?: Array<TaskStatDataItem>;
|
|
4894
|
+
/**
|
|
4895
|
+
* 不同规格任务统计数据详情。
|
|
4896
|
+
|
|
4897
|
+
1、转码规格:
|
|
4898
|
+
<li>Audio:纯音频</li>
|
|
4899
|
+
<li>Remuxing:转封装</li>
|
|
4900
|
+
<li>其他转码规格:{TYPE}.{CODEC}.{SPECIFICATION}</li> 其中 TYPE 取值
|
|
4901
|
+
Standard:普通转码
|
|
4902
|
+
TESHD-10:视频极速高清
|
|
4903
|
+
TESHD-20:音频极速高清
|
|
4904
|
+
TESHD-30:音视频极速高清
|
|
4905
|
+
TESHD-30-SDK:音视频极速高清SDK按时长计费
|
|
4906
|
+
TESHD-30-SDKCores:音视频极速高清SDK按核心数计费
|
|
4907
|
+
Edit:视频编辑
|
|
4908
|
+
其中 CODEC 取值
|
|
4909
|
+
H264:H.264 编码
|
|
4910
|
+
H265:H.265 编码
|
|
4911
|
+
AV1:AV1 编码
|
|
4912
|
+
MV-HEVC:MV-HEVC 编码
|
|
4913
|
+
其中 SPECIFICATION 取值
|
|
4914
|
+
SD:标清
|
|
4915
|
+
HD:高清
|
|
4916
|
+
FHD:全高清
|
|
4917
|
+
2K:2K
|
|
4918
|
+
4K:4K
|
|
4919
|
+
例如 TESHD-10.H265.HD 表示 H.265 编码方式高清极速高清转码
|
|
4920
|
+
|
|
4921
|
+
2、增强规格:视频增强格式:{TYPE}.{CODEC}.{SPECIFICATION}.{FPS},其中 CODEC 和 SPECIFICATION 同转码,FPS在原子类型时才存在;音频增强格式:{TYPE}。
|
|
4922
|
+
增强TYPE 取值:
|
|
4923
|
+
<li>Enhance:通用增强类型,可能是任意一种原子增强类型</li>
|
|
4924
|
+
<li>原子增强类型</li> 视频原子增强类型取值:
|
|
4925
|
+
Sdr2hdr:SDR2HDR
|
|
4926
|
+
SuperResolution:超分
|
|
4927
|
+
InsertFrame:插帧
|
|
4928
|
+
ComprehensiveEnhancement:综合增强
|
|
4929
|
+
NoiseReduction:视频降噪
|
|
4930
|
+
ColorEnhancement:色彩增强
|
|
4931
|
+
RemoveScratches:去划痕
|
|
4932
|
+
Deburr:去毛刺
|
|
4933
|
+
DetailEnhancement:细节增强
|
|
4934
|
+
LightEnhancement:低光照增强
|
|
4935
|
+
FaceEnhancement:人脸增强
|
|
4936
|
+
音频原子增强类型取值:
|
|
4937
|
+
AudioNoiseReduction
|
|
4938
|
+
VolumeBalance
|
|
4939
|
+
AudioBeautify
|
|
4940
|
+
AudioSeparation
|
|
4941
|
+
|
|
4942
|
+
3、截图规格:
|
|
4943
|
+
<li>ImageSprite:雪碧图</li>
|
|
4944
|
+
<li>SampleSnapshot:采样截图</li>
|
|
4945
|
+
<li>SnapshotByTime:时间点截图</li>
|
|
4946
|
+
4、图片处理规格:{TYPE}.{CODEC}.{SPECIFICATION}
|
|
4947
|
+
<li> ImageCompression:图片编码</li>
|
|
4948
|
+
<li> ImageSuperResolution:图片超分</li>
|
|
4949
|
+
<li> EnhanceImageColor:图片色彩增强</li>
|
|
4950
|
+
5、智能分析规格:
|
|
4951
|
+
<li>AIAnalysis:分析大类,对于未拆分的</li>
|
|
4952
|
+
<li>VideoTag:视频标签</li>
|
|
4953
|
+
<li>VideoClassification:视频分类</li>
|
|
4954
|
+
<li>SmartCover:智能封面</li>
|
|
4955
|
+
<li>FrameLabel:帧标签</li>
|
|
4956
|
+
<li>VideoSplit:视频拆条</li>
|
|
4957
|
+
<li>Highlights:精彩集锦</li>
|
|
4958
|
+
<li>OpeningAndEnding:片头片尾</li>
|
|
4959
|
+
6、智能识别规格:
|
|
4960
|
+
<li>AIRecognition:识别大类,对于未拆分的</li>
|
|
4961
|
+
<li>FaceRecognition:人脸识别</li>
|
|
4962
|
+
<li>TextRecognition:文字识别</li>
|
|
4963
|
+
<li>ObjectRecognition:物体识别</li>
|
|
4964
|
+
<li>VoiceRecognition:语音识别</li>
|
|
4965
|
+
<li>VoiceTranslation:语音翻译</li>
|
|
4966
|
+
7、内容审核、转动图无细分规格。
|
|
4967
|
+
*/
|
|
4968
|
+
Details?: Array<SpecificationDataItem>;
|
|
4969
|
+
}
|
|
4790
4970
|
/**
|
|
4791
4971
|
* 评测任务输入参数类型
|
|
4792
4972
|
*/
|
|
@@ -4924,30 +5104,21 @@ export interface AiAnalysisTaskHorizontalToVerticalResult {
|
|
|
4924
5104
|
Output?: AiAnalysisTaskHorizontalToVerticalOutput;
|
|
4925
5105
|
}
|
|
4926
5106
|
/**
|
|
4927
|
-
*
|
|
5107
|
+
* 查询输入的RIST配置信息。
|
|
4928
5108
|
*/
|
|
4929
|
-
export interface
|
|
4930
|
-
/**
|
|
4931
|
-
* 任务状态,有 `PROCESSING`,`SUCCESS` 和 `FAIL` 三种
|
|
4932
|
-
*/
|
|
4933
|
-
Status?: string;
|
|
4934
|
-
/**
|
|
4935
|
-
* 错误码,0:成功,其他值:失败
|
|
4936
|
-
*/
|
|
4937
|
-
ErrCode?: number;
|
|
5109
|
+
export interface DescribeInputRISTSettings {
|
|
4938
5110
|
/**
|
|
4939
|
-
*
|
|
5111
|
+
* RIST模式,可选[LISTENER|CALLER],默认为LISTENER。
|
|
4940
5112
|
*/
|
|
4941
|
-
|
|
5113
|
+
Mode?: string;
|
|
4942
5114
|
/**
|
|
4943
|
-
*
|
|
5115
|
+
* RIST配置方案,可选[MAIN|SIMPLE],默认为MAIN。
|
|
4944
5116
|
*/
|
|
4945
|
-
|
|
5117
|
+
Profile?: string;
|
|
4946
5118
|
/**
|
|
4947
|
-
*
|
|
4948
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5119
|
+
* RIST缓冲区大小,单位为毫秒。最小值为50毫秒,最大值为5000毫秒。默认值:120
|
|
4949
5120
|
*/
|
|
4950
|
-
|
|
5121
|
+
Buffer?: number;
|
|
4951
5122
|
}
|
|
4952
5123
|
/**
|
|
4953
5124
|
* 创建的输入RTMP拉流源站配置信息。
|
|
@@ -5567,6 +5738,36 @@ export interface ModifyPersonSampleResponse {
|
|
|
5567
5738
|
*/
|
|
5568
5739
|
RequestId?: string;
|
|
5569
5740
|
}
|
|
5741
|
+
/**
|
|
5742
|
+
* 媒体质检任务结果类型
|
|
5743
|
+
*/
|
|
5744
|
+
export interface ScheduleQualityControlTaskResult {
|
|
5745
|
+
/**
|
|
5746
|
+
* 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
|
|
5747
|
+
*/
|
|
5748
|
+
Status?: string;
|
|
5749
|
+
/**
|
|
5750
|
+
* 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](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) 列表。
|
|
5751
|
+
*/
|
|
5752
|
+
ErrCodeExt?: string;
|
|
5753
|
+
/**
|
|
5754
|
+
* 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
|
|
5755
|
+
*/
|
|
5756
|
+
ErrCode?: number;
|
|
5757
|
+
/**
|
|
5758
|
+
* 错误信息。
|
|
5759
|
+
*/
|
|
5760
|
+
Message?: string;
|
|
5761
|
+
/**
|
|
5762
|
+
* 媒体质检任务的输入。
|
|
5763
|
+
*/
|
|
5764
|
+
Input?: AiQualityControlTaskInput;
|
|
5765
|
+
/**
|
|
5766
|
+
* 媒体质检任务的输出。
|
|
5767
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5768
|
+
*/
|
|
5769
|
+
Output?: QualityControlData;
|
|
5770
|
+
}
|
|
5570
5771
|
/**
|
|
5571
5772
|
* 媒体质检输入参数类型
|
|
5572
5773
|
*/
|
|
@@ -5967,6 +6168,20 @@ export interface MediaContentReviewOcrTextSegmentItem {
|
|
|
5967
6168
|
*/
|
|
5968
6169
|
PicUrlExpireTime?: string;
|
|
5969
6170
|
}
|
|
6171
|
+
/**
|
|
6172
|
+
* 智能精彩片段结果信息
|
|
6173
|
+
*/
|
|
6174
|
+
export interface AiAnalysisTaskHighlightOutput {
|
|
6175
|
+
/**
|
|
6176
|
+
* 视频智能精彩片段列表。
|
|
6177
|
+
*/
|
|
6178
|
+
HighlightSet?: Array<MediaAiAnalysisHighlightItem>;
|
|
6179
|
+
/**
|
|
6180
|
+
* 精彩片段的存储位置。
|
|
6181
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6182
|
+
*/
|
|
6183
|
+
OutputStorage?: TaskOutputStorage;
|
|
6184
|
+
}
|
|
5970
6185
|
/**
|
|
5971
6186
|
* StopStreamLinkFlow请求参数结构体
|
|
5972
6187
|
*/
|
|
@@ -5976,6 +6191,21 @@ export interface StopStreamLinkFlowRequest {
|
|
|
5976
6191
|
*/
|
|
5977
6192
|
FlowId: string;
|
|
5978
6193
|
}
|
|
6194
|
+
/**
|
|
6195
|
+
* 智能字幕翻译的输入。
|
|
6196
|
+
*/
|
|
6197
|
+
export interface SmartSubtitleTaskResultInput {
|
|
6198
|
+
/**
|
|
6199
|
+
* 智能字幕模板 ID。
|
|
6200
|
+
*/
|
|
6201
|
+
Definition?: number;
|
|
6202
|
+
/**
|
|
6203
|
+
* 智能字幕自定义参数,当 Definition 填 0 时有效。
|
|
6204
|
+
该参数用于高度定制场景,建议您优先使用 Definition 指定智能字幕参数。
|
|
6205
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6206
|
+
*/
|
|
6207
|
+
RawParameter?: RawSmartSubtitleParameter;
|
|
6208
|
+
}
|
|
5979
6209
|
/**
|
|
5980
6210
|
* DescribeAdaptiveDynamicStreamingTemplates请求参数结构体
|
|
5981
6211
|
*/
|
|
@@ -6191,6 +6421,15 @@ export interface CreateContentReviewTemplateResponse {
|
|
|
6191
6421
|
*/
|
|
6192
6422
|
RequestId?: string;
|
|
6193
6423
|
}
|
|
6424
|
+
/**
|
|
6425
|
+
* ModifyBlindWatermarkTemplate返回参数结构体
|
|
6426
|
+
*/
|
|
6427
|
+
export interface ModifyBlindWatermarkTemplateResponse {
|
|
6428
|
+
/**
|
|
6429
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6430
|
+
*/
|
|
6431
|
+
RequestId?: string;
|
|
6432
|
+
}
|
|
6194
6433
|
/**
|
|
6195
6434
|
* 违禁任务控制参数
|
|
6196
6435
|
*/
|
|
@@ -7531,18 +7770,13 @@ export interface CreateAsrHotwordsResponse {
|
|
|
7531
7770
|
RequestId?: string;
|
|
7532
7771
|
}
|
|
7533
7772
|
/**
|
|
7534
|
-
*
|
|
7773
|
+
* DeleteBlindWatermarkTemplate返回参数结构体
|
|
7535
7774
|
*/
|
|
7536
|
-
export interface
|
|
7775
|
+
export interface DeleteBlindWatermarkTemplateResponse {
|
|
7537
7776
|
/**
|
|
7538
|
-
*
|
|
7539
|
-
*/
|
|
7540
|
-
HighlightSet?: Array<MediaAiAnalysisHighlightItem>;
|
|
7541
|
-
/**
|
|
7542
|
-
* 精彩片段的存储位置。
|
|
7543
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
7777
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7544
7778
|
*/
|
|
7545
|
-
|
|
7779
|
+
RequestId?: string;
|
|
7546
7780
|
}
|
|
7547
7781
|
/**
|
|
7548
7782
|
* 质检项配置
|
|
@@ -7680,6 +7914,23 @@ export interface AdaptiveDynamicStreamingInfoItem {
|
|
|
7680
7914
|
*/
|
|
7681
7915
|
Storage?: TaskOutputStorage;
|
|
7682
7916
|
}
|
|
7917
|
+
/**
|
|
7918
|
+
* DescribeProcessImageTemplates返回参数结构体
|
|
7919
|
+
*/
|
|
7920
|
+
export interface DescribeProcessImageTemplatesResponse {
|
|
7921
|
+
/**
|
|
7922
|
+
* 符合过滤条件的记录总数。
|
|
7923
|
+
*/
|
|
7924
|
+
TotalCount?: number;
|
|
7925
|
+
/**
|
|
7926
|
+
* 图片处理模板详情列表。
|
|
7927
|
+
*/
|
|
7928
|
+
ProcessImageTemplateSet?: Array<ProcessImageTemplate>;
|
|
7929
|
+
/**
|
|
7930
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7931
|
+
*/
|
|
7932
|
+
RequestId?: string;
|
|
7933
|
+
}
|
|
7683
7934
|
/**
|
|
7684
7935
|
* ProcessMedia请求参数结构体
|
|
7685
7936
|
*/
|
|
@@ -7804,6 +8055,19 @@ export interface DescribeOutputRTSPPullSettings {
|
|
|
7804
8055
|
*/
|
|
7805
8056
|
ServerUrls: Array<DescribeOutputRTSPPullServerUrl>;
|
|
7806
8057
|
}
|
|
8058
|
+
/**
|
|
8059
|
+
* CreateBlindWatermarkTemplate返回参数结构体
|
|
8060
|
+
*/
|
|
8061
|
+
export interface CreateBlindWatermarkTemplateResponse {
|
|
8062
|
+
/**
|
|
8063
|
+
* 数字水印模板唯一标识。
|
|
8064
|
+
*/
|
|
8065
|
+
Definition?: number;
|
|
8066
|
+
/**
|
|
8067
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
8068
|
+
*/
|
|
8069
|
+
RequestId?: string;
|
|
8070
|
+
}
|
|
7807
8071
|
/**
|
|
7808
8072
|
* 文本全文识别结果。
|
|
7809
8073
|
*/
|
|
@@ -7848,6 +8112,15 @@ export interface AiAnalysisTaskSegmentOutput {
|
|
|
7848
8112
|
*/
|
|
7849
8113
|
Abstract?: string;
|
|
7850
8114
|
}
|
|
8115
|
+
/**
|
|
8116
|
+
* ModifyProcessImageTemplate返回参数结构体
|
|
8117
|
+
*/
|
|
8118
|
+
export interface ModifyProcessImageTemplateResponse {
|
|
8119
|
+
/**
|
|
8120
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
8121
|
+
*/
|
|
8122
|
+
RequestId?: string;
|
|
8123
|
+
}
|
|
7851
8124
|
/**
|
|
7852
8125
|
* 视频编辑/合成任务 视频元素信息。
|
|
7853
8126
|
*/
|
|
@@ -9734,34 +10007,37 @@ export interface CreateMediaEvaluationRequest {
|
|
|
9734
10007
|
SessionContext?: string;
|
|
9735
10008
|
}
|
|
9736
10009
|
/**
|
|
9737
|
-
*
|
|
10010
|
+
* 数字水印模板详情
|
|
9738
10011
|
*/
|
|
9739
|
-
export interface
|
|
10012
|
+
export interface BlindWatermarkTemplate {
|
|
9740
10013
|
/**
|
|
9741
|
-
*
|
|
10014
|
+
* 数字水印模板唯一标识。
|
|
9742
10015
|
*/
|
|
9743
|
-
|
|
10016
|
+
Definition?: number;
|
|
9744
10017
|
/**
|
|
9745
|
-
*
|
|
10018
|
+
* 数字水印类型,可选值:<li>blind-basic:基础版权数字水印;</li><li>blind-nagra:NAGRA取证水印;</li>
|
|
9746
10019
|
*/
|
|
9747
|
-
|
|
10020
|
+
Type?: string;
|
|
9748
10021
|
/**
|
|
9749
|
-
*
|
|
10022
|
+
* 数字水印模板名称。
|
|
9750
10023
|
*/
|
|
9751
|
-
|
|
10024
|
+
Name?: string;
|
|
9752
10025
|
/**
|
|
9753
|
-
*
|
|
10026
|
+
* 数字水印模板文本内容,长度不超过64个字符。
|
|
9754
10027
|
*/
|
|
9755
|
-
|
|
10028
|
+
TextContent?: string;
|
|
9756
10029
|
/**
|
|
9757
|
-
*
|
|
10030
|
+
* 数字水印模板描述信息。
|
|
9758
10031
|
*/
|
|
9759
|
-
|
|
10032
|
+
Comment?: string;
|
|
9760
10033
|
/**
|
|
9761
|
-
*
|
|
9762
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
10034
|
+
* 数字水印模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
|
|
9763
10035
|
*/
|
|
9764
|
-
|
|
10036
|
+
CreateTime?: string;
|
|
10037
|
+
/**
|
|
10038
|
+
* 数字水印模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
|
|
10039
|
+
*/
|
|
10040
|
+
UpdateTime?: string;
|
|
9765
10041
|
}
|
|
9766
10042
|
/**
|
|
9767
10043
|
* 涉敏任务控制参数。
|
|
@@ -10289,31 +10565,13 @@ export interface RawImageWatermarkInput {
|
|
|
10289
10565
|
RepeatType?: string;
|
|
10290
10566
|
}
|
|
10291
10567
|
/**
|
|
10292
|
-
*
|
|
10568
|
+
* DeleteAIAnalysisTemplate返回参数结构体
|
|
10293
10569
|
*/
|
|
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;
|
|
10570
|
+
export interface DeleteAIAnalysisTemplateResponse {
|
|
10313
10571
|
/**
|
|
10314
|
-
*
|
|
10572
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
10315
10573
|
*/
|
|
10316
|
-
|
|
10574
|
+
RequestId?: string;
|
|
10317
10575
|
}
|
|
10318
10576
|
/**
|
|
10319
10577
|
* CreateQualityControlTemplate请求参数结构体
|
|
@@ -10503,6 +10761,15 @@ export interface DescribeInput {
|
|
|
10503
10761
|
*/
|
|
10504
10762
|
StreamUrls?: Array<StreamUrlDetail>;
|
|
10505
10763
|
}
|
|
10764
|
+
/**
|
|
10765
|
+
* DeleteBlindWatermarkTemplate请求参数结构体
|
|
10766
|
+
*/
|
|
10767
|
+
export interface DeleteBlindWatermarkTemplateRequest {
|
|
10768
|
+
/**
|
|
10769
|
+
* 数字水印模板唯一标识。
|
|
10770
|
+
*/
|
|
10771
|
+
Definition: number;
|
|
10772
|
+
}
|
|
10506
10773
|
/**
|
|
10507
10774
|
* DeleteTranscodeTemplate请求参数结构体
|
|
10508
10775
|
*/
|
|
@@ -10613,6 +10880,23 @@ export interface ProhibitedConfigureInfo {
|
|
|
10613
10880
|
*/
|
|
10614
10881
|
OcrReviewInfo?: ProhibitedOcrReviewTemplateInfo;
|
|
10615
10882
|
}
|
|
10883
|
+
/**
|
|
10884
|
+
* CreateProcessImageTemplate请求参数结构体
|
|
10885
|
+
*/
|
|
10886
|
+
export interface CreateProcessImageTemplateRequest {
|
|
10887
|
+
/**
|
|
10888
|
+
* 图片处理模板。
|
|
10889
|
+
*/
|
|
10890
|
+
ProcessImageTemplate: ImageTaskInput;
|
|
10891
|
+
/**
|
|
10892
|
+
* 图片处理模板名称,长度限制:64个字符。
|
|
10893
|
+
*/
|
|
10894
|
+
Name?: string;
|
|
10895
|
+
/**
|
|
10896
|
+
* 图片处理模板描述信息,长度限制:256个字符。
|
|
10897
|
+
*/
|
|
10898
|
+
Comment?: string;
|
|
10899
|
+
}
|
|
10616
10900
|
/**
|
|
10617
10901
|
* DescribeStreamLinkFlowSRTStatistics返回参数结构体
|
|
10618
10902
|
*/
|
|
@@ -10765,19 +11049,21 @@ export interface BlindWatermarkInput {
|
|
|
10765
11049
|
Definition: number;
|
|
10766
11050
|
}
|
|
10767
11051
|
/**
|
|
10768
|
-
*
|
|
11052
|
+
* DescribeBlindWatermarkTemplates返回参数结构体
|
|
10769
11053
|
*/
|
|
10770
|
-
export interface
|
|
11054
|
+
export interface DescribeBlindWatermarkTemplatesResponse {
|
|
10771
11055
|
/**
|
|
10772
|
-
*
|
|
11056
|
+
* 符合过滤条件的记录总数。
|
|
10773
11057
|
*/
|
|
10774
|
-
|
|
11058
|
+
TotalCount?: number;
|
|
10775
11059
|
/**
|
|
10776
|
-
*
|
|
10777
|
-
该参数用于高度定制场景,建议您优先使用 Definition 指定智能字幕参数。
|
|
10778
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
11060
|
+
* 数字水印模板详情列表。
|
|
10779
11061
|
*/
|
|
10780
|
-
|
|
11062
|
+
BlindWatermarkTemplateSet?: Array<BlindWatermarkTemplate>;
|
|
11063
|
+
/**
|
|
11064
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
11065
|
+
*/
|
|
11066
|
+
RequestId?: string;
|
|
10781
11067
|
}
|
|
10782
11068
|
/**
|
|
10783
11069
|
* 图片水印模板输入参数
|
|
@@ -10808,6 +11094,19 @@ export interface ImageWatermarkInputForUpdate {
|
|
|
10808
11094
|
*/
|
|
10809
11095
|
RepeatType?: string;
|
|
10810
11096
|
}
|
|
11097
|
+
/**
|
|
11098
|
+
* CreateSchedule返回参数结构体
|
|
11099
|
+
*/
|
|
11100
|
+
export interface CreateScheduleResponse {
|
|
11101
|
+
/**
|
|
11102
|
+
* 编排 ID。
|
|
11103
|
+
*/
|
|
11104
|
+
ScheduleId?: number;
|
|
11105
|
+
/**
|
|
11106
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
11107
|
+
*/
|
|
11108
|
+
RequestId?: string;
|
|
11109
|
+
}
|
|
10811
11110
|
/**
|
|
10812
11111
|
* DescribeAIAnalysisTemplates请求参数结构体
|
|
10813
11112
|
*/
|
|
@@ -11512,28 +11811,73 @@ export interface TerrorismOcrReviewTemplateInfoForUpdate {
|
|
|
11512
11811
|
/**
|
|
11513
11812
|
* 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规,不填默认为 100 分。取值范围:0~100。
|
|
11514
11813
|
*/
|
|
11515
|
-
BlockConfidence?: number;
|
|
11814
|
+
BlockConfidence?: number;
|
|
11815
|
+
/**
|
|
11816
|
+
* 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核,不填默认为 75 分。取值范围:0~100。
|
|
11817
|
+
*/
|
|
11818
|
+
ReviewConfidence?: number;
|
|
11819
|
+
}
|
|
11820
|
+
/**
|
|
11821
|
+
* DescribeTranscodeTemplates返回参数结构体
|
|
11822
|
+
*/
|
|
11823
|
+
export interface DescribeTranscodeTemplatesResponse {
|
|
11824
|
+
/**
|
|
11825
|
+
* 符合过滤条件的记录总数。
|
|
11826
|
+
*/
|
|
11827
|
+
TotalCount?: number;
|
|
11828
|
+
/**
|
|
11829
|
+
* 转码模板详情列表。
|
|
11830
|
+
*/
|
|
11831
|
+
TranscodeTemplateSet?: Array<TranscodeTemplate>;
|
|
11832
|
+
/**
|
|
11833
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
11834
|
+
*/
|
|
11835
|
+
RequestId?: string;
|
|
11836
|
+
}
|
|
11837
|
+
/**
|
|
11838
|
+
* 直播实时翻译结果
|
|
11839
|
+
*/
|
|
11840
|
+
export interface LiveStreamTransTextRecognitionResult {
|
|
11841
|
+
/**
|
|
11842
|
+
* 识别文本。
|
|
11843
|
+
*/
|
|
11844
|
+
Text?: string;
|
|
11845
|
+
/**
|
|
11846
|
+
* 翻译片段起始的 PTS 时间,单位:秒。
|
|
11847
|
+
*/
|
|
11848
|
+
StartPtsTime?: number;
|
|
11849
|
+
/**
|
|
11850
|
+
* 翻译片段终止的 PTS 时间,单位:秒。
|
|
11851
|
+
*/
|
|
11852
|
+
EndPtsTime?: number;
|
|
11853
|
+
/**
|
|
11854
|
+
* 翻译片段置信度。取值:0~100。
|
|
11855
|
+
*/
|
|
11856
|
+
Confidence?: number;
|
|
11857
|
+
/**
|
|
11858
|
+
* 翻译文本。
|
|
11859
|
+
*/
|
|
11860
|
+
Trans?: string;
|
|
11516
11861
|
/**
|
|
11517
|
-
*
|
|
11862
|
+
* 翻译开始UTC时间。
|
|
11863
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11518
11864
|
*/
|
|
11519
|
-
|
|
11520
|
-
}
|
|
11521
|
-
/**
|
|
11522
|
-
* DescribeTranscodeTemplates返回参数结构体
|
|
11523
|
-
*/
|
|
11524
|
-
export interface DescribeTranscodeTemplatesResponse {
|
|
11865
|
+
StartTime?: string;
|
|
11525
11866
|
/**
|
|
11526
|
-
*
|
|
11867
|
+
* 翻译结束UTC时间。
|
|
11868
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11527
11869
|
*/
|
|
11528
|
-
|
|
11870
|
+
EndTime?: string;
|
|
11529
11871
|
/**
|
|
11530
|
-
*
|
|
11872
|
+
* 稳态标记。
|
|
11873
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11531
11874
|
*/
|
|
11532
|
-
|
|
11875
|
+
SteadyState?: boolean;
|
|
11533
11876
|
/**
|
|
11534
|
-
*
|
|
11877
|
+
* websocket与trtc实时翻译的UserId
|
|
11878
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11535
11879
|
*/
|
|
11536
|
-
|
|
11880
|
+
UserId?: string;
|
|
11537
11881
|
}
|
|
11538
11882
|
/**
|
|
11539
11883
|
* 雪碧图模板详情
|
|
@@ -11713,6 +12057,23 @@ export interface QualityControlItem {
|
|
|
11713
12057
|
*/
|
|
11714
12058
|
AreaCoordSet?: Array<number | bigint>;
|
|
11715
12059
|
}
|
|
12060
|
+
/**
|
|
12061
|
+
* 任务统计数据,包括任务数和用量。
|
|
12062
|
+
*/
|
|
12063
|
+
export interface TaskStatDataItem {
|
|
12064
|
+
/**
|
|
12065
|
+
* 数据所在时间区间的开始时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F)。如:当时间粒度为天,2018-12-01T00:00:00+08:00,表示2018年12月1日(含)到2018年12月2日(不含)区间。
|
|
12066
|
+
*/
|
|
12067
|
+
Time: string;
|
|
12068
|
+
/**
|
|
12069
|
+
* 任务数。
|
|
12070
|
+
*/
|
|
12071
|
+
Count: number;
|
|
12072
|
+
/**
|
|
12073
|
+
* 任务用量。
|
|
12074
|
+
*/
|
|
12075
|
+
Usage: number;
|
|
12076
|
+
}
|
|
11716
12077
|
/**
|
|
11717
12078
|
* FairPlay,WideVine,PlayReady 等Drm加密方式。
|
|
11718
12079
|
*/
|
|
@@ -12638,6 +12999,19 @@ export interface DescribeBatchTaskDetailRequest {
|
|
|
12638
12999
|
*/
|
|
12639
13000
|
TaskId: string;
|
|
12640
13001
|
}
|
|
13002
|
+
/**
|
|
13003
|
+
* DescribeUsageData返回参数结构体
|
|
13004
|
+
*/
|
|
13005
|
+
export interface DescribeUsageDataResponse {
|
|
13006
|
+
/**
|
|
13007
|
+
* 媒体处理统计数据概览,展示所查询任务的概览以及详细数据。
|
|
13008
|
+
*/
|
|
13009
|
+
Data?: Array<TaskStatData>;
|
|
13010
|
+
/**
|
|
13011
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
13012
|
+
*/
|
|
13013
|
+
RequestId?: string;
|
|
13014
|
+
}
|
|
12641
13015
|
/**
|
|
12642
13016
|
* Asr 文字涉违禁信息
|
|
12643
13017
|
*/
|
|
@@ -13369,6 +13743,33 @@ export interface CreateSampleSnapshotTemplateResponse {
|
|
|
13369
13743
|
*/
|
|
13370
13744
|
RequestId?: string;
|
|
13371
13745
|
}
|
|
13746
|
+
/**
|
|
13747
|
+
* 超分配置
|
|
13748
|
+
*/
|
|
13749
|
+
export interface SuperResolutionConfig {
|
|
13750
|
+
/**
|
|
13751
|
+
* 能力配置开关,可选值:
|
|
13752
|
+
<li>ON:开启;</li>
|
|
13753
|
+
<li>OFF:关闭。</li>
|
|
13754
|
+
默认值:ON。
|
|
13755
|
+
*/
|
|
13756
|
+
Switch?: string;
|
|
13757
|
+
/**
|
|
13758
|
+
* 类型,可选值:
|
|
13759
|
+
<li>lq:针对低清晰度有较多噪声视频的超分;</li>
|
|
13760
|
+
<li>hq:针对高清晰度视频超分。</li>
|
|
13761
|
+
默认值:lq。
|
|
13762
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13763
|
+
*/
|
|
13764
|
+
Type?: string;
|
|
13765
|
+
/**
|
|
13766
|
+
* 超分倍数,可选值:
|
|
13767
|
+
<li>2:目前只支持 2 倍超分。</li>
|
|
13768
|
+
默认值:2。
|
|
13769
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13770
|
+
*/
|
|
13771
|
+
Size?: number;
|
|
13772
|
+
}
|
|
13372
13773
|
/**
|
|
13373
13774
|
* CreateLiveRecordTemplate返回参数结构体
|
|
13374
13775
|
*/
|
|
@@ -13760,6 +14161,19 @@ export interface FlowRealtimeStatusSRT {
|
|
|
13760
14161
|
*/
|
|
13761
14162
|
Encryption: string;
|
|
13762
14163
|
}
|
|
14164
|
+
/**
|
|
14165
|
+
* 指定规格任务统计数据。
|
|
14166
|
+
*/
|
|
14167
|
+
export interface SpecificationDataItem {
|
|
14168
|
+
/**
|
|
14169
|
+
* 任务规格。
|
|
14170
|
+
*/
|
|
14171
|
+
Specification: string;
|
|
14172
|
+
/**
|
|
14173
|
+
* 统计数据。
|
|
14174
|
+
*/
|
|
14175
|
+
Data: Array<TaskStatDataItem>;
|
|
14176
|
+
}
|
|
13763
14177
|
/**
|
|
13764
14178
|
* 极速高清参数配置。
|
|
13765
14179
|
*/
|
|
@@ -13844,21 +14258,30 @@ export interface AsrFullTextConfigureInfo {
|
|
|
13844
14258
|
SourceLanguage?: string;
|
|
13845
14259
|
}
|
|
13846
14260
|
/**
|
|
13847
|
-
*
|
|
14261
|
+
* 视频去重结果数据结构
|
|
13848
14262
|
*/
|
|
13849
|
-
export interface
|
|
14263
|
+
export interface AiAnalysisTaskVideoRemakeResult {
|
|
13850
14264
|
/**
|
|
13851
|
-
*
|
|
14265
|
+
* 任务状态,有 `PROCESSING`,`SUCCESS` 和 `FAIL` 三种
|
|
13852
14266
|
*/
|
|
13853
|
-
|
|
14267
|
+
Status?: string;
|
|
13854
14268
|
/**
|
|
13855
|
-
*
|
|
14269
|
+
* 错误码,0:成功,其他值:失败
|
|
13856
14270
|
*/
|
|
13857
|
-
|
|
14271
|
+
ErrCode?: number;
|
|
13858
14272
|
/**
|
|
13859
|
-
*
|
|
14273
|
+
* 错误信息
|
|
13860
14274
|
*/
|
|
13861
|
-
|
|
14275
|
+
Message?: string;
|
|
14276
|
+
/**
|
|
14277
|
+
* 去重任务输入
|
|
14278
|
+
*/
|
|
14279
|
+
Input?: AiAnalysisTaskVideoRemakeInput;
|
|
14280
|
+
/**
|
|
14281
|
+
* 去重任务输出
|
|
14282
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14283
|
+
*/
|
|
14284
|
+
Output?: AiAnalysisTaskVideoRemakeOutput;
|
|
13862
14285
|
}
|
|
13863
14286
|
/**
|
|
13864
14287
|
* 去伪影(毛刺)配置
|
|
@@ -15355,49 +15778,13 @@ export interface DescribeInputRTMPSettings {
|
|
|
15355
15778
|
StreamKey: string;
|
|
15356
15779
|
}
|
|
15357
15780
|
/**
|
|
15358
|
-
*
|
|
15781
|
+
* DeleteProcessImageTemplate返回参数结构体
|
|
15359
15782
|
*/
|
|
15360
|
-
export interface
|
|
15361
|
-
/**
|
|
15362
|
-
* 识别文本。
|
|
15363
|
-
*/
|
|
15364
|
-
Text?: string;
|
|
15365
|
-
/**
|
|
15366
|
-
* 翻译片段起始的 PTS 时间,单位:秒。
|
|
15367
|
-
*/
|
|
15368
|
-
StartPtsTime?: number;
|
|
15369
|
-
/**
|
|
15370
|
-
* 翻译片段终止的 PTS 时间,单位:秒。
|
|
15371
|
-
*/
|
|
15372
|
-
EndPtsTime?: number;
|
|
15373
|
-
/**
|
|
15374
|
-
* 翻译片段置信度。取值:0~100。
|
|
15375
|
-
*/
|
|
15376
|
-
Confidence?: number;
|
|
15377
|
-
/**
|
|
15378
|
-
* 翻译文本。
|
|
15379
|
-
*/
|
|
15380
|
-
Trans?: string;
|
|
15381
|
-
/**
|
|
15382
|
-
* 翻译开始UTC时间。
|
|
15383
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
15384
|
-
*/
|
|
15385
|
-
StartTime?: string;
|
|
15386
|
-
/**
|
|
15387
|
-
* 翻译结束UTC时间。
|
|
15388
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
15389
|
-
*/
|
|
15390
|
-
EndTime?: string;
|
|
15783
|
+
export interface DeleteProcessImageTemplateResponse {
|
|
15391
15784
|
/**
|
|
15392
|
-
*
|
|
15393
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
15394
|
-
*/
|
|
15395
|
-
SteadyState?: boolean;
|
|
15396
|
-
/**
|
|
15397
|
-
* websocket与trtc实时翻译的UserId
|
|
15398
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
15785
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
15399
15786
|
*/
|
|
15400
|
-
|
|
15787
|
+
RequestId?: string;
|
|
15401
15788
|
}
|
|
15402
15789
|
/**
|
|
15403
15790
|
* DescribeStreamLinkSecurityGroups请求参数结构体
|
|
@@ -17081,6 +17468,41 @@ export interface DescribeSampleSnapshotTemplatesResponse {
|
|
|
17081
17468
|
*/
|
|
17082
17469
|
RequestId?: string;
|
|
17083
17470
|
}
|
|
17471
|
+
/**
|
|
17472
|
+
* DescribeProcessImageTemplates请求参数结构体
|
|
17473
|
+
*/
|
|
17474
|
+
export interface DescribeProcessImageTemplatesRequest {
|
|
17475
|
+
/**
|
|
17476
|
+
* 图片处理模板唯一标识过滤条件,数组长度限制:100。
|
|
17477
|
+
*/
|
|
17478
|
+
Definitions?: Array<number | bigint>;
|
|
17479
|
+
/**
|
|
17480
|
+
* 分页偏移量,默认值:0。
|
|
17481
|
+
*/
|
|
17482
|
+
Offset?: number;
|
|
17483
|
+
/**
|
|
17484
|
+
* 返回记录条数 默认值:10;最大值:100。
|
|
17485
|
+
*/
|
|
17486
|
+
Limit?: number;
|
|
17487
|
+
/**
|
|
17488
|
+
* 图片处理模板标识过滤条件。
|
|
17489
|
+
*/
|
|
17490
|
+
Name?: string;
|
|
17491
|
+
/**
|
|
17492
|
+
* 排序方式,OrderBy设置后才有效,可选值: 0:升序 1:降序 默认 0。
|
|
17493
|
+
*/
|
|
17494
|
+
OrderType?: number;
|
|
17495
|
+
/**
|
|
17496
|
+
* 排序字段,可选值:
|
|
17497
|
+
Definition:模板唯一标识;
|
|
17498
|
+
默认值:创建时间。
|
|
17499
|
+
*/
|
|
17500
|
+
OrderBy?: string;
|
|
17501
|
+
/**
|
|
17502
|
+
* 模板类型过滤条件,可选值: <li>Preset:系统预置模板;</li> <li>Custom:用户自定义模板。</li>
|
|
17503
|
+
*/
|
|
17504
|
+
Type?: string;
|
|
17505
|
+
}
|
|
17084
17506
|
/**
|
|
17085
17507
|
* 视频编辑/合成任务 图片元素信息。
|
|
17086
17508
|
*/
|
|
@@ -17516,6 +17938,56 @@ export interface DescribeSmartSubtitleTemplatesResponse {
|
|
|
17516
17938
|
*/
|
|
17517
17939
|
RequestId?: string;
|
|
17518
17940
|
}
|
|
17941
|
+
/**
|
|
17942
|
+
* DescribeUsageData请求参数结构体
|
|
17943
|
+
*/
|
|
17944
|
+
export interface DescribeUsageDataRequest {
|
|
17945
|
+
/**
|
|
17946
|
+
* 起始日期。使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F)。
|
|
17947
|
+
*/
|
|
17948
|
+
StartTime: string;
|
|
17949
|
+
/**
|
|
17950
|
+
* 结束日期,需大于等于起始日期。使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F)。
|
|
17951
|
+
*/
|
|
17952
|
+
EndTime: string;
|
|
17953
|
+
/**
|
|
17954
|
+
* 查询媒体处理任务类型,默认查询转码。
|
|
17955
|
+
<li>Transcode:转码</li>
|
|
17956
|
+
<li>Enhance:增强</li>
|
|
17957
|
+
<li>AIAnalysis:智能分析</li>
|
|
17958
|
+
<li>AIRecognition:智能识别</li>
|
|
17959
|
+
<li>AIReview:内容审核</li>
|
|
17960
|
+
<li>Snapshot:截图</li>
|
|
17961
|
+
<li>AnimatedGraphics:转动图</li>
|
|
17962
|
+
<li>AiQualityControl:质检</li>
|
|
17963
|
+
<li>Evaluation:视频评测</li>
|
|
17964
|
+
<li>ImageProcess: 图片处理</li>
|
|
17965
|
+
<li>AddBlindWatermark: 添加基础版权数字水印</li>
|
|
17966
|
+
<li>AddNagraWatermark: 添加NAGRA数字水印</li>
|
|
17967
|
+
<li>ExtractBlindWatermark: 提取基础版权数字水印</li>
|
|
17968
|
+
*/
|
|
17969
|
+
Types?: Array<string>;
|
|
17970
|
+
/**
|
|
17971
|
+
* 媒体处理园区,默认返回 ap-guangzhou 园区。
|
|
17972
|
+
<li>ap-guangzhou:广州</li>
|
|
17973
|
+
<li>ap-hongkong:中国香港</li>
|
|
17974
|
+
<li>ap-taipei:中国台北</li>
|
|
17975
|
+
<li>ap-singapore:新加坡</li>
|
|
17976
|
+
<li>ap-mumbai:印度</li>
|
|
17977
|
+
<li>ap-jakarta:雅加达</li>
|
|
17978
|
+
<li>ap-seoul:首尔</li>
|
|
17979
|
+
<li>ap-bangkok:泰国</li>
|
|
17980
|
+
<li>ap-tokyo:日本</li>
|
|
17981
|
+
<li>na-siliconvalley:美国硅谷</li>
|
|
17982
|
+
<li>na-ashburn:弗吉尼亚</li>
|
|
17983
|
+
<li>na-toronto:多伦多</li>
|
|
17984
|
+
<li>sa-saopaulo:圣保罗</li>
|
|
17985
|
+
<li>eu-frankfurt:法兰克福</li>
|
|
17986
|
+
<li>eu-moscow:俄罗斯</li>
|
|
17987
|
+
<li>aws:AWS</li>
|
|
17988
|
+
*/
|
|
17989
|
+
ProcessRegions?: Array<string>;
|
|
17990
|
+
}
|
|
17519
17991
|
/**
|
|
17520
17992
|
* DescribeStreamLinkSecurityGroups返回参数结构体
|
|
17521
17993
|
*/
|
|
@@ -18555,6 +19027,27 @@ export interface AiReviewTaskPornAsrResult {
|
|
|
18555
19027
|
*/
|
|
18556
19028
|
Output?: AiReviewPornAsrTaskOutput;
|
|
18557
19029
|
}
|
|
19030
|
+
/**
|
|
19031
|
+
* ModifyBlindWatermarkTemplate请求参数结构体
|
|
19032
|
+
*/
|
|
19033
|
+
export interface ModifyBlindWatermarkTemplateRequest {
|
|
19034
|
+
/**
|
|
19035
|
+
* 数字水印模板唯一标识。
|
|
19036
|
+
*/
|
|
19037
|
+
Definition: number;
|
|
19038
|
+
/**
|
|
19039
|
+
* 数字水印模板名称,支持 中文、英文、数字、_、-和. 六种格式,长度限制:64 个字符。
|
|
19040
|
+
*/
|
|
19041
|
+
Name?: string;
|
|
19042
|
+
/**
|
|
19043
|
+
* 数字水印模板描述信息,长度限制:256 个字符。
|
|
19044
|
+
*/
|
|
19045
|
+
Comment?: string;
|
|
19046
|
+
/**
|
|
19047
|
+
* 数字水印文字内容,长度不超过64个字符,NAGRA水印类型的模板不支持修改文字内容。
|
|
19048
|
+
*/
|
|
19049
|
+
TextContent?: string;
|
|
19050
|
+
}
|
|
18558
19051
|
/**
|
|
18559
19052
|
* DescribeStreamLinkFlow请求参数结构体
|
|
18560
19053
|
*/
|
|
@@ -19490,6 +19983,37 @@ export interface PoliticalAsrReviewTemplateInfo {
|
|
|
19490
19983
|
*/
|
|
19491
19984
|
ReviewConfidence?: number;
|
|
19492
19985
|
}
|
|
19986
|
+
/**
|
|
19987
|
+
* CreatePersonSample请求参数结构体
|
|
19988
|
+
*/
|
|
19989
|
+
export interface CreatePersonSampleRequest {
|
|
19990
|
+
/**
|
|
19991
|
+
* 素材名称,长度限制:20 个字符。
|
|
19992
|
+
*/
|
|
19993
|
+
Name: string;
|
|
19994
|
+
/**
|
|
19995
|
+
* 素材应用场景,可选值:
|
|
19996
|
+
1. Recognition:用于内容识别,等价于 Recognition.Face。
|
|
19997
|
+
2. Review:用于不适宜内容识别,等价于 Review.Face。
|
|
19998
|
+
3. All:包含以上全部,等价于 1+2。
|
|
19999
|
+
*/
|
|
20000
|
+
Usages: Array<string>;
|
|
20001
|
+
/**
|
|
20002
|
+
* 素材描述,长度限制:1024 个字符。
|
|
20003
|
+
*/
|
|
20004
|
+
Description?: string;
|
|
20005
|
+
/**
|
|
20006
|
+
* 素材图片 [Base64](https://tools.ietf.org/html/rfc4648) 编码后的字符串,仅支持 jpeg、png 图片格式。数组长度限制:5 张图片。
|
|
20007
|
+
注意:图片必须是单人像五官较清晰的照片,像素不低于 200*200。
|
|
20008
|
+
*/
|
|
20009
|
+
FaceContents?: Array<string>;
|
|
20010
|
+
/**
|
|
20011
|
+
* 素材标签
|
|
20012
|
+
<li>数组长度限制:20 个标签;</li>
|
|
20013
|
+
<li>单个标签长度限制:128 个字符。</li>
|
|
20014
|
+
*/
|
|
20015
|
+
Tags?: Array<string>;
|
|
20016
|
+
}
|
|
19493
20017
|
/**
|
|
19494
20018
|
* 智能字幕输入结构体
|
|
19495
20019
|
*/
|
|
@@ -19974,6 +20498,39 @@ export interface EditMediaTaskOutput {
|
|
|
19974
20498
|
*/
|
|
19975
20499
|
MetaData?: MediaMetaData;
|
|
19976
20500
|
}
|
|
20501
|
+
/**
|
|
20502
|
+
* 图片处理模板
|
|
20503
|
+
*/
|
|
20504
|
+
export interface ProcessImageTemplate {
|
|
20505
|
+
/**
|
|
20506
|
+
* 图片处理模板唯一标识。
|
|
20507
|
+
*/
|
|
20508
|
+
Definition?: number;
|
|
20509
|
+
/**
|
|
20510
|
+
* 图片处理模板名称。
|
|
20511
|
+
*/
|
|
20512
|
+
Name?: string;
|
|
20513
|
+
/**
|
|
20514
|
+
* 图片处理模板描述信息。
|
|
20515
|
+
*/
|
|
20516
|
+
Comment?: string;
|
|
20517
|
+
/**
|
|
20518
|
+
* 模板类型。
|
|
20519
|
+
*/
|
|
20520
|
+
Type?: string;
|
|
20521
|
+
/**
|
|
20522
|
+
* 图片处理模板配置参数。
|
|
20523
|
+
*/
|
|
20524
|
+
ProcessImageConfig?: ImageTaskInput;
|
|
20525
|
+
/**
|
|
20526
|
+
* 模板创建时间。
|
|
20527
|
+
*/
|
|
20528
|
+
CreateTime?: string;
|
|
20529
|
+
/**
|
|
20530
|
+
* 模板最后修改时间。
|
|
20531
|
+
*/
|
|
20532
|
+
UpdateTime?: string;
|
|
20533
|
+
}
|
|
19977
20534
|
/**
|
|
19978
20535
|
* 智能精彩集锦片段列表。
|
|
19979
20536
|
*/
|