tencentcloud-sdk-nodejs-mps 4.0.574 → 4.0.576

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.
@@ -459,6 +459,36 @@ export interface CreateOutputSRTSettings {
459
459
  Mode?: string
460
460
  }
461
461
 
462
+ /**
463
+ * 智能精彩片段信息
464
+ */
465
+ export interface MediaAiAnalysisHighlightItem {
466
+ /**
467
+ * 智能精彩集锦地址。
468
+ */
469
+ HighlightPath: string
470
+
471
+ /**
472
+ * 智能精彩集锦封面地址。
473
+ */
474
+ CovImgPath: string
475
+
476
+ /**
477
+ * 智能精彩集锦的可信度,取值范围是 0 到 100。
478
+ */
479
+ Confidence: number
480
+
481
+ /**
482
+ * 智能精彩集锦持续时间。
483
+ */
484
+ Duration: number
485
+
486
+ /**
487
+ * 智能精彩集锦子片段列表。
488
+ */
489
+ SegmentSet: Array<HighlightSegmentItem>
490
+ }
491
+
462
492
  /**
463
493
  * ModifyStreamLinkOutputInfo返回参数结构体
464
494
  */
@@ -787,39 +817,39 @@ export interface DescribeOutputRTMPPullSettings {
787
817
  */
788
818
  export interface AwsS3FileUploadTrigger {
789
819
  /**
790
- * 工作流绑定的 AWS S3 存储桶。
820
+ * 绑定的 AWS S3 存储桶。
791
821
  */
792
822
  S3Bucket: string
793
823
 
794
824
  /**
795
- * 工作流绑定的桶所在 AWS 区域。
825
+ * 绑定的桶所在 AWS 区域。
796
826
  */
797
827
  S3Region: string
798
828
 
799
829
  /**
800
- * 工作流绑定的输入路径目录,必须为绝对路径,即以 `/` 开头和结尾。如`/movie/201907/`,不填代表根目录`/`。
830
+ * 绑定的输入路径目录,必须为绝对路径,即以 `/` 开头和结尾。如`/movie/201907/`,不填代表根目录`/`。
801
831
  */
802
832
  Dir?: string
803
833
 
804
834
  /**
805
- * 工作流允许触发的文件格式列表,如 ["mp4", "flv", "mov"]。不填代表所有格式的文件都可以触发工作流。
835
+ * 允许触发的文件格式列表,如 ["mp4", "flv", "mov"]。不填代表所有格式的文件都可以触发工作流。
806
836
  */
807
837
  Formats?: Array<string>
808
838
 
809
839
  /**
810
- * 工作流绑定的 AWS S3 存储桶的秘钥ID。
840
+ * 绑定的 AWS S3 存储桶的秘钥ID。
811
841
  注意:此字段可能返回 null,表示取不到有效值。
812
842
  */
813
843
  S3SecretId?: string
814
844
 
815
845
  /**
816
- * 工作流绑定的 AWS S3 存储桶的秘钥Key。
846
+ * 绑定的 AWS S3 存储桶的秘钥Key。
817
847
  注意:此字段可能返回 null,表示取不到有效值。
818
848
  */
819
849
  S3SecretKey?: string
820
850
 
821
851
  /**
822
- * 工作流绑定的 AWS S3 存储桶对应的 SQS事件队列。
852
+ * 绑定的 AWS S3 存储桶对应的 SQS事件队列。
823
853
  注意:队列和桶需要在同一区域。
824
854
  注意:此字段可能返回 null,表示取不到有效值。
825
855
  */
@@ -1098,8 +1128,9 @@ export interface CreateWorkflowRequest {
1098
1128
  OutputStorage?: TaskOutputStorage
1099
1129
 
1100
1130
  /**
1101
- * 媒体处理生成的文件输出的目标目录,如`/movie/201907/`。如果不填,表示与触发文件所在的目录一致。
1102
- */
1131
+ * 媒体处理生成的文件输出的目标目录,必选以 / 开头和结尾,如`/movie/201907/`。
1132
+ 如果不填,表示与触发文件所在的目录一致。
1133
+ */
1103
1134
  OutputDir?: string
1104
1135
 
1105
1136
  /**
@@ -1606,7 +1637,7 @@ export interface ModifyScheduleRequest {
1606
1637
  OutputStorage?: TaskOutputStorage
1607
1638
 
1608
1639
  /**
1609
- * 媒体处理生成的文件输出的目标目录。
1640
+ * 媒体处理生成的文件输出的目标目录,必选以 / 开头和结尾。
1610
1641
  注意:如果设置为空,则表示取消老配置的OutputDir值。
1611
1642
  */
1612
1643
  OutputDir?: string
@@ -1798,23 +1829,13 @@ export interface DescribeStreamLinkFlowsResponse {
1798
1829
  }
1799
1830
 
1800
1831
  /**
1801
- * 语音识别片段。
1832
+ * 查询输入的RTSP配置信息。
1802
1833
  */
1803
- export interface AiRecognitionTaskAsrWordsSegmentItem {
1804
- /**
1805
- * 识别片段起始的偏移时间,单位:秒。
1806
- */
1807
- StartTimeOffset: number
1808
-
1809
- /**
1810
- * 识别片段终止的偏移时间,单位:秒。
1811
- */
1812
- EndTimeOffset: number
1813
-
1834
+ export interface DescribeInputRTSPPullSettings {
1814
1835
  /**
1815
- * 识别片段置信度。取值:0~100。
1836
+ * RTSP源站地址信息。
1816
1837
  */
1817
- Confidence: number
1838
+ SourceAddresses: Array<DescribeRTSPPullSourceAddress>
1818
1839
  }
1819
1840
 
1820
1841
  /**
@@ -2317,6 +2338,37 @@ export interface ModifyStreamLinkFlowRequest {
2317
2338
  FlowName: string
2318
2339
  }
2319
2340
 
2341
+ /**
2342
+ * 智能精彩片段结果类型
2343
+ */
2344
+ export interface AiAnalysisTaskHighlightResult {
2345
+ /**
2346
+ * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
2347
+ */
2348
+ Status: string
2349
+
2350
+ /**
2351
+ * 错误码,0:成功,其他值:失败。
2352
+ */
2353
+ ErrCode: number
2354
+
2355
+ /**
2356
+ * 错误信息。
2357
+ */
2358
+ Message: string
2359
+
2360
+ /**
2361
+ * 智能精彩片段任务输入。
2362
+ */
2363
+ Input: AiAnalysisTaskHighlightInput
2364
+
2365
+ /**
2366
+ * 智能精彩片段任务输出。
2367
+ 注意:此字段可能返回 null,表示取不到有效值。
2368
+ */
2369
+ Output: AiAnalysisTaskHighlightOutput
2370
+ }
2371
+
2320
2372
  /**
2321
2373
  * DeleteAIAnalysisTemplate返回参数结构体
2322
2374
  */
@@ -2386,6 +2438,37 @@ export interface DeleteWorkflowResponse {
2386
2438
  RequestId?: string
2387
2439
  }
2388
2440
 
2441
+ /**
2442
+ * 质检异常项。
2443
+ */
2444
+ export interface QualityControlResult {
2445
+ /**
2446
+ * 异常类型,取值范围:
2447
+ Jitter:抖动,
2448
+ Blur:模糊,
2449
+ LowLighting:低光照,
2450
+ HighLighting:过曝,
2451
+ CrashScreen:花屏,
2452
+ BlackWhiteEdge:黑白边,
2453
+ SolidColorScreen:纯色屏,
2454
+ Noise:噪点,
2455
+ Mosaic:马赛克,
2456
+ QRCode:二维码,
2457
+ AppletCode:小程序码,
2458
+ BarCode:条形码,
2459
+ LowVoice:低音,
2460
+ HighVoice:爆音,
2461
+ NoVoice:静音,
2462
+ LowEvaluation:无参考打分低于阈值。
2463
+ */
2464
+ Type: string
2465
+
2466
+ /**
2467
+ * 质检结果项。
2468
+ */
2469
+ QualityControlItems: Array<QualityControlItem>
2470
+ }
2471
+
2389
2472
  /**
2390
2473
  * 内容审核鉴黄任务输入参数类型
2391
2474
  */
@@ -2436,6 +2519,16 @@ export interface ScheduleTask {
2436
2519
  */
2437
2520
  Status: string
2438
2521
 
2522
+ /**
2523
+ * 源异常时返回非0错误码,返回0 时请使用各个具体任务的 ErrCode。
2524
+ */
2525
+ ErrCode?: number
2526
+
2527
+ /**
2528
+ * 源异常时返回对应异常Message,否则请使用各个具体任务的 Message。
2529
+ */
2530
+ Message?: string
2531
+
2439
2532
  /**
2440
2533
  * 媒体处理的目标文件信息。
2441
2534
  注意:此字段可能返回 null,表示取不到有效值。
@@ -2585,7 +2678,7 @@ export interface CreateScheduleResponse {
2585
2678
  /**
2586
2679
  * 编排 ID。
2587
2680
  */
2588
- ScheduleId: number
2681
+ ScheduleId?: number
2589
2682
 
2590
2683
  /**
2591
2684
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -3508,7 +3601,7 @@ export interface ProcessMediaResponse {
3508
3601
  /**
3509
3602
  * 任务 ID。
3510
3603
  */
3511
- TaskId: string
3604
+ TaskId?: string
3512
3605
 
3513
3606
  /**
3514
3607
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -3548,7 +3641,7 @@ export interface CreateScheduleRequest {
3548
3641
  ScheduleName: string
3549
3642
 
3550
3643
  /**
3551
- * 编排绑定的触发规则,当上传视频命中该规则到该对象时即触发工作流。
3644
+ * 编排绑定的触发规则,当上传视频命中该规则到该对象时即触发编排。
3552
3645
  */
3553
3646
  Trigger: WorkflowTrigger
3554
3647
 
@@ -3563,8 +3656,9 @@ export interface CreateScheduleRequest {
3563
3656
  OutputStorage?: TaskOutputStorage
3564
3657
 
3565
3658
  /**
3566
- * 媒体处理生成的文件输出的目标目录,如`/movie/201907/`。如果不填,表示与触发文件所在的目录一致。
3567
- */
3659
+ * 媒体处理生成的文件输出的目标目录,必选以 / 开头和结尾,如`/movie/201907/`。
3660
+ 如果不填,表示与触发文件所在的目录一致。
3661
+ */
3568
3662
  OutputDir?: string
3569
3663
 
3570
3664
  /**
@@ -3963,6 +4057,23 @@ export interface EditMediaOutputConfig {
3963
4057
  Type?: string
3964
4058
  }
3965
4059
 
4060
+ /**
4061
+ * 视频质检输入参数类型
4062
+ */
4063
+ export interface AiQualityControlTaskInput {
4064
+ /**
4065
+ * 视频质检模板 ID 。
4066
+ 注意:此字段可能返回 null,表示取不到有效值。
4067
+ */
4068
+ Definition?: number
4069
+
4070
+ /**
4071
+ * 渠道扩展参数json序列化字符串。
4072
+ 注意:此字段可能返回 null,表示取不到有效值。
4073
+ */
4074
+ ChannelExtPara?: string
4075
+ }
4076
+
3966
4077
  /**
3967
4078
  * 鉴黄任务控制参数。
3968
4079
  */
@@ -5199,6 +5310,21 @@ export interface AiAnalysisTaskTagOutput {
5199
5310
  TagSet: Array<MediaAiAnalysisTagItem>
5200
5311
  }
5201
5312
 
5313
+ /**
5314
+ * 智能精彩片段结果信息
5315
+ */
5316
+ export interface AiAnalysisTaskHighlightOutput {
5317
+ /**
5318
+ * 视频智能精彩片段列表。
5319
+ */
5320
+ HighlightSet: Array<MediaAiAnalysisHighlightItem>
5321
+
5322
+ /**
5323
+ * 精彩片段的存储位置。
5324
+ */
5325
+ OutputStorage: TaskOutputStorage
5326
+ }
5327
+
5202
5328
  /**
5203
5329
  * SRT输入源地址。
5204
5330
  */
@@ -5229,10 +5355,22 @@ export interface ProcessMediaRequest {
5229
5355
  OutputStorage?: TaskOutputStorage
5230
5356
 
5231
5357
  /**
5232
- * 媒体处理生成的文件输出的目标目录,如`/movie/201907/`。如果不填,表示与 InputInfo 中文件所在的目录一致。
5233
- */
5358
+ * 媒体处理生成的文件输出的目标目录,必选以 / 开头和结尾,如`/movie/201907/`。
5359
+ 如果不填,表示与 InputInfo 中文件所在的目录一致。
5360
+ */
5234
5361
  OutputDir?: string
5235
5362
 
5363
+ /**
5364
+ * 编排ID。
5365
+ 注意1:对于OutputStorage、OutputDir参数:
5366
+ <li>当服务编排中子任务节点配置了OutputStorage、OutputDir时,该子任务节点中配置的输出作为子任务的输出。</li>
5367
+ <li>当服务编排中子任务节点没有配置OutputStorage、OutputDir时,若创建任务接口(ProcessMedia)有输出,将覆盖原有编排的默认输出。</li>
5368
+ 注意2:对于TaskNotifyConfig参数,若创建任务接口(ProcessMedia)有设置,将覆盖原有编排的默认回调。
5369
+
5370
+ 注意3:编排的 Trigger 只是用来自动化触发场景,在手动发起的请求中已经配置的 Trigger 无意义。
5371
+ */
5372
+ ScheduleId?: number
5373
+
5236
5374
  /**
5237
5375
  * 媒体处理类型任务参数。
5238
5376
  */
@@ -5253,6 +5391,11 @@ export interface ProcessMediaRequest {
5253
5391
  */
5254
5392
  AiRecognitionTask?: AiRecognitionTaskInput
5255
5393
 
5394
+ /**
5395
+ * 视频质检类型任务参数。
5396
+ */
5397
+ AiQualityControlTask?: AiQualityControlTaskInput
5398
+
5256
5399
  /**
5257
5400
  * 任务的事件通知信息,不填代表不获取事件通知。
5258
5401
  */
@@ -5273,17 +5416,6 @@ export interface ProcessMediaRequest {
5273
5416
  */
5274
5417
  SessionContext?: string
5275
5418
 
5276
- /**
5277
- * 编排ID。
5278
- 注意1:对于OutputStorage、OutputDir参数:
5279
- <li>当服务编排中子任务节点配置了OutputStorage、OutputDir时,该子任务节点中配置的输出作为子任务的输出。</li>
5280
- <li>当服务编排中子任务节点没有配置OutputStorage、OutputDir时,若创建任务接口(ProcessMedia)有输出,将覆盖原有编排的默认输出。</li>
5281
- 注意2:对于TaskNotifyConfig参数,若创建任务接口(ProcessMedia)有设置,将覆盖原有编排的默认回调。
5282
-
5283
- 注意3:编排的 Trigger 只是用来自动化触发场景,在手动发起的请求中已经配置的 Trigger 无意义。
5284
- */
5285
- ScheduleId?: number
5286
-
5287
5419
  /**
5288
5420
  * 任务类型,默认Online
5289
5421
  <li> Online:实时任务</li>
@@ -5414,12 +5546,12 @@ export interface DescribeSchedulesResponse {
5414
5546
  /**
5415
5547
  * 符合过滤条件的记录总数。
5416
5548
  */
5417
- TotalCount: number
5549
+ TotalCount?: number
5418
5550
 
5419
5551
  /**
5420
5552
  * 编排信息数组。
5421
5553
  */
5422
- ScheduleInfoSet: Array<SchedulesInfo>
5554
+ ScheduleInfoSet?: Array<SchedulesInfo>
5423
5555
 
5424
5556
  /**
5425
5557
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -6433,6 +6565,42 @@ export interface ScheduleAnalysisTaskResult {
6433
6565
  Output: Array<AiAnalysisResult>
6434
6566
  }
6435
6567
 
6568
+ /**
6569
+ * 质检任务结果类型
6570
+ */
6571
+ export interface ScheduleQualityControlTaskResult {
6572
+ /**
6573
+ * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
6574
+ */
6575
+ Status: string
6576
+
6577
+ /**
6578
+ * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](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) 列表。
6579
+ */
6580
+ ErrCodeExt: string
6581
+
6582
+ /**
6583
+ * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
6584
+ */
6585
+ ErrCode: number
6586
+
6587
+ /**
6588
+ * 错误信息。
6589
+ */
6590
+ Message: string
6591
+
6592
+ /**
6593
+ * 质检任务的输入。
6594
+ */
6595
+ Input: AiQualityControlTaskInput
6596
+
6597
+ /**
6598
+ * 质检任务的输出。
6599
+ 注意:此字段可能返回 null,表示取不到有效值。
6600
+ */
6601
+ Output: QualityControlData
6602
+ }
6603
+
6436
6604
  /**
6437
6605
  * 涉敏任务控制参数。
6438
6606
  */
@@ -7075,6 +7243,12 @@ export interface AiAnalysisResult {
7075
7243
  注意:此字段可能返回 null,表示取不到有效值。
7076
7244
  */
7077
7245
  FrameTagTask: AiAnalysisTaskFrameTagResult
7246
+
7247
+ /**
7248
+ * 视频内容分析集锦任务的查询结果,当任务类型为 Highlight时有效。
7249
+ 注意:此字段可能返回 null,表示取不到有效值。
7250
+ */
7251
+ HighlightTask: AiAnalysisTaskHighlightResult
7078
7252
  }
7079
7253
 
7080
7254
  /**
@@ -7825,6 +7999,33 @@ export interface AiRecognitionTaskOcrFullTextSegmentTextItem {
7825
7999
  Text: string
7826
8000
  }
7827
8001
 
8002
+ /**
8003
+ * 质检结果项
8004
+ */
8005
+ export interface QualityControlItem {
8006
+ /**
8007
+ * 置信度,取值范围是 0 到 100。
8008
+ 注意:此字段可能返回 null,表示取不到有效值。
8009
+ */
8010
+ Confidence: number
8011
+
8012
+ /**
8013
+ * 出现的起始时间戳,秒。
8014
+ */
8015
+ StartTimeOffset: number
8016
+
8017
+ /**
8018
+ * 出现的结束时间戳,秒。
8019
+ */
8020
+ EndTimeOffset: number
8021
+
8022
+ /**
8023
+ * 区域坐标(px),即左上角坐标、右下角坐标。
8024
+ 注意:此字段可能返回 null,表示取不到有效值。
8025
+ */
8026
+ AreaCoordSet: Array<number>
8027
+ }
8028
+
7828
8029
  /**
7829
8030
  * DeleteStreamLinkFlow返回参数结构体
7830
8031
  */
@@ -7898,6 +8099,16 @@ export interface CreateSampleSnapshotTemplateResponse {
7898
8099
  RequestId?: string
7899
8100
  }
7900
8101
 
8102
+ /**
8103
+ * 智能精彩片段任务输入类型
8104
+ */
8105
+ export interface AiAnalysisTaskHighlightInput {
8106
+ /**
8107
+ * 视频智能精彩片段模板 ID。
8108
+ */
8109
+ Definition: number
8110
+ }
8111
+
7901
8112
  /**
7902
8113
  * 语音违禁任务控制参数
7903
8114
  */
@@ -8151,13 +8362,23 @@ export interface AiReviewTaskPoliticalAsrResult {
8151
8362
  }
8152
8363
 
8153
8364
  /**
8154
- * 查询输入的RTSP配置信息。
8365
+ * 语音识别片段。
8155
8366
  */
8156
- export interface DescribeInputRTSPPullSettings {
8367
+ export interface AiRecognitionTaskAsrWordsSegmentItem {
8157
8368
  /**
8158
- * RTSP源站地址信息。
8369
+ * 识别片段起始的偏移时间,单位:秒。
8159
8370
  */
8160
- SourceAddresses: Array<DescribeRTSPPullSourceAddress>
8371
+ StartTimeOffset: number
8372
+
8373
+ /**
8374
+ * 识别片段终止的偏移时间,单位:秒。
8375
+ */
8376
+ EndTimeOffset: number
8377
+
8378
+ /**
8379
+ * 识别片段置信度。取值:0~100。
8380
+ */
8381
+ Confidence: number
8161
8382
  }
8162
8383
 
8163
8384
  /**
@@ -9251,7 +9472,7 @@ export interface CreateWorkflowResponse {
9251
9472
  /**
9252
9473
  * 工作流 ID。
9253
9474
  */
9254
- WorkflowId: number
9475
+ WorkflowId?: number
9255
9476
 
9256
9477
  /**
9257
9478
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -9630,17 +9851,20 @@ export interface Activity {
9630
9851
  <li>action-image-sprite:雪碧图</li>
9631
9852
  <li>action-snapshotByTimeOffset: 时间点截图</li>
9632
9853
  <li>action-adaptive-substream:自适应码流</li>
9854
+ 注意:此字段可能返回 null,表示取不到有效值。
9633
9855
  */
9634
9856
  ActivityType: string
9635
9857
 
9636
9858
  /**
9637
- * 后驱节点索引数组
9638
- */
9859
+ * 后驱节点索引数组
9860
+ 注意:此字段可能返回 null,表示取不到有效值。
9861
+ */
9639
9862
  ReardriveIndex?: Array<number>
9640
9863
 
9641
9864
  /**
9642
- * 原子任务参数
9643
- */
9865
+ * 原子任务参数
9866
+ 注意:此字段可能返回 null,表示取不到有效值。
9867
+ */
9644
9868
  ActivityPara?: ActivityPara
9645
9869
  }
9646
9870
 
@@ -11355,11 +11579,19 @@ export interface DescribeSchedulesRequest {
11355
11579
  */
11356
11580
  ScheduleIds?: Array<number>
11357
11581
 
11582
+ /**
11583
+ * 编排触发类型,可选值:
11584
+ <li>CosFileUpload: 腾讯云 COS 文件上传触发</li>
11585
+ <li>AwsS3FileUpload:Aws S3 文件上传触发。</li>
11586
+ 不填或者为空表示全部。
11587
+ */
11588
+ TriggerType?: string
11589
+
11358
11590
  /**
11359
11591
  * 状态,取值范围:
11360
11592
  <li>Enabled:已启用,</li>
11361
11593
  <li>Disabled:已禁用。</li>
11362
- 不填此参数,则不区分工作流状态。
11594
+ 不填此参数,则不区编排状态。
11363
11595
  */
11364
11596
  Status?: string
11365
11597
 
@@ -11711,6 +11943,35 @@ export interface DescribeFlow {
11711
11943
  Region: string
11712
11944
  }
11713
11945
 
11946
+ /**
11947
+ * 质检结果输出。
11948
+ */
11949
+ export interface QualityControlData {
11950
+ /**
11951
+ * 为true时表示视频无音频轨。
11952
+ 注意:此字段可能返回 null,表示取不到有效值。
11953
+ */
11954
+ NoAudio: boolean
11955
+
11956
+ /**
11957
+ * 为true时表示视频无视频轨。
11958
+ 注意:此字段可能返回 null,表示取不到有效值。
11959
+ */
11960
+ NoVideo: boolean
11961
+
11962
+ /**
11963
+ * 视频无参考质量打分,百分制。
11964
+ 注意:此字段可能返回 null,表示取不到有效值。
11965
+ */
11966
+ QualityEvaluationScore: number
11967
+
11968
+ /**
11969
+ * 质检检出异常项。
11970
+ 注意:此字段可能返回 null,表示取不到有效值。
11971
+ */
11972
+ QualityControlResultSet: Array<QualityControlResult>
11973
+ }
11974
+
11714
11975
  /**
11715
11976
  * CreateWatermarkTemplate返回参数结构体
11716
11977
  */
@@ -12663,6 +12924,12 @@ export interface WorkflowTask {
12663
12924
  * 视频内容识别任务的执行状态与结果。
12664
12925
  */
12665
12926
  AiRecognitionResultSet: Array<AiRecognitionResult>
12927
+
12928
+ /**
12929
+ * 视频质检任务的执行状态与结果。
12930
+ 注意:此字段可能返回 null,表示取不到有效值。
12931
+ */
12932
+ AiQualityControlTaskResult: ScheduleQualityControlTaskResult
12666
12933
  }
12667
12934
 
12668
12935
  /**
@@ -13564,6 +13831,26 @@ export interface EditMediaTaskOutput {
13564
13831
  Path: string
13565
13832
  }
13566
13833
 
13834
+ /**
13835
+ * 智能精彩集锦片段列表。
13836
+ */
13837
+ export interface HighlightSegmentItem {
13838
+ /**
13839
+ * 置信度。
13840
+ */
13841
+ Confidence: number
13842
+
13843
+ /**
13844
+ * 片段起始时间偏移。
13845
+ */
13846
+ StartTimeOffset: number
13847
+
13848
+ /**
13849
+ * 片段结束时间偏移。
13850
+ */
13851
+ EndTimeOffset: number
13852
+ }
13853
+
13567
13854
  /**
13568
13855
  * DeleteWatermarkTemplate返回参数结构体
13569
13856
  */