tencentcloud-sdk-nodejs-vod 4.0.626 → 4.0.630

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.
@@ -165,6 +165,21 @@ export interface DescribeFileAttributesTask {
165
165
  */
166
166
  SessionContext: string;
167
167
  }
168
+ /**
169
+ * 视频画面质量评价的控制参数。
170
+ */
171
+ export interface QualityEvaluationConfigureInfo {
172
+ /**
173
+ * 视频画面质量评价检测开关,可选值:
174
+ <li>ON:开启;</li>
175
+ <li>OFF:关闭。</li>
176
+ */
177
+ Switch: string;
178
+ /**
179
+ * 视频画面质量评价过滤阈值,结果只返回低于该值的时间段,默认值为 60。
180
+ */
181
+ Score?: number;
182
+ }
168
183
  /**
169
184
  * 音视频审核任务的输入。
170
185
  */
@@ -791,6 +806,31 @@ export interface AiAnalysisTaskCoverOutput {
791
806
  */
792
807
  CoverSetFileUrlExpireTime: string;
793
808
  }
809
+ /**
810
+ * 音画质检测任务的输出。
811
+ */
812
+ export interface QualityInspectTaskOutput {
813
+ /**
814
+ * 媒体文件是否无音频轨,取值范围:
815
+ <li>0:否,即有音频轨;</li>
816
+ <li>1:是,即无音频轨。</li>
817
+ */
818
+ NoAudio?: number;
819
+ /**
820
+ * 媒体文件是否无视频轨,取值范围:
821
+ <li>0:否,即有视频轨;</li>
822
+ <li>1:是,即无视频轨。</li>
823
+ */
824
+ NoVideo?: number;
825
+ /**
826
+ * 视频画面质量评分,取值范围:[0, 100]。
827
+ */
828
+ QualityEvaluationScore?: number;
829
+ /**
830
+ * 音画质检测出的异常项列表。
831
+ */
832
+ QualityInspectResultSet?: Array<QualityInspectResultItem>;
833
+ }
794
834
  /**
795
835
  * 用户自定义文本音视频审核任务控制参数。
796
836
  */
@@ -815,6 +855,15 @@ export interface UserDefineOcrTextReviewTemplateInfoForUpdate {
815
855
  */
816
856
  ReviewConfidence?: number;
817
857
  }
858
+ /**
859
+ * ResetProcedureTemplate返回参数结构体
860
+ */
861
+ export interface ResetProcedureTemplateResponse {
862
+ /**
863
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
864
+ */
865
+ RequestId?: string;
866
+ }
818
867
  /**
819
868
  * 点播文件指定时间点截图信息
820
869
  */
@@ -1364,6 +1413,17 @@ export interface DeleteContentReviewTemplateRequest {
1364
1413
  */
1365
1414
  SubAppId?: number;
1366
1415
  }
1416
+ /**
1417
+ * 视频画面噪点检测的控制参数。
1418
+ */
1419
+ export interface NoiseConfigureInfo {
1420
+ /**
1421
+ * 视频画面噪点检测开关,可选值:
1422
+ <li>ON:开启;</li>
1423
+ <li>OFF:关闭。</li>
1424
+ */
1425
+ Switch: string;
1426
+ }
1367
1427
  /**
1368
1428
  * 音视频审核涉及令人不适宜信息的任务输入参数类型
1369
1429
  */
@@ -1769,6 +1829,21 @@ export interface AiRecognitionTaskAsrWordsSegmentItem {
1769
1829
  */
1770
1830
  Confidence: number;
1771
1831
  }
1832
+ /**
1833
+ * 视频画面质量评价的控制参数。
1834
+ */
1835
+ export interface QualityEvaluationConfigureInfoForUpdate {
1836
+ /**
1837
+ * 视频画面质量评价开关,可选值:
1838
+ <li>ON:开启;</li>
1839
+ <li>OFF:关闭。</li>
1840
+ */
1841
+ Switch?: string;
1842
+ /**
1843
+ * 视频画面质量评价过滤阈值,结果只返回低于该值的时间段。
1844
+ */
1845
+ Score?: number;
1846
+ }
1772
1847
  /**
1773
1848
  * 视频内容识别输入参数类型
1774
1849
  */
@@ -2385,6 +2460,17 @@ export interface DescribeDailyPlayStatFileListResponse {
2385
2460
  */
2386
2461
  RequestId?: string;
2387
2462
  }
2463
+ /**
2464
+ * 视频画面低光、过曝检测的控制参数。
2465
+ */
2466
+ export interface AbnormalLightingConfigureInfo {
2467
+ /**
2468
+ * 视频画面低光、过曝检测开关,可选值:
2469
+ <li>ON:开启;</li>
2470
+ <li>OFF:关闭。</li>
2471
+ */
2472
+ Switch: string;
2473
+ }
2388
2474
  /**
2389
2475
  * 文字水印模板
2390
2476
  */
@@ -2459,6 +2545,17 @@ export interface AiReviewPornTaskInput {
2459
2545
  */
2460
2546
  Definition: number;
2461
2547
  }
2548
+ /**
2549
+ * 视频画面抖动重影检测的控制参数。
2550
+ */
2551
+ export interface JitterConfigureInfoForUpdate {
2552
+ /**
2553
+ * 视频画面抖动重影检测开关,可选值:
2554
+ <li>ON:开启;</li>
2555
+ <li>OFF:关闭。</li>
2556
+ */
2557
+ Switch?: string;
2558
+ }
2462
2559
  /**
2463
2560
  * 用户自定义语音审核任务控制参数
2464
2561
  */
@@ -2770,22 +2867,21 @@ export interface ModifySuperPlayerConfigResponse {
2770
2867
  RequestId?: string;
2771
2868
  }
2772
2869
  /**
2773
- * 文本关键词识别输出。
2870
+ * DescribeWordSamples返回参数结构体
2774
2871
  */
2775
- export interface AiRecognitionTaskOcrWordsResultOutput {
2872
+ export interface DescribeWordSamplesResponse {
2776
2873
  /**
2777
- * 文本关键词识别结果集。
2778
- <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 ResultSetFileUrl 对应的文件中获取。
2874
+ * 符合条件的记录总数。
2779
2875
  */
2780
- ResultSet: Array<AiRecognitionTaskOcrWordsResultItem>;
2876
+ TotalCount: number;
2781
2877
  /**
2782
- * 文本关键词识别结果集文件 URL。文件的内容为 JSON,数据结构与 ResultSet 字段一致。 (文件不会永久存储,到达ResultSetFileUrlExpireTime 时间点后文件将被删除)。
2878
+ * 关键词信息。
2783
2879
  */
2784
- ResultSetFileUrl: string;
2880
+ WordSet: Array<AiSampleWord>;
2785
2881
  /**
2786
- * 文本关键词识别结果集文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)
2882
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId
2787
2883
  */
2788
- ResultSetFileUrlExpireTime: string;
2884
+ RequestId?: string;
2789
2885
  }
2790
2886
  /**
2791
2887
  * RefreshUrlCache返回参数结构体
@@ -3102,21 +3198,22 @@ export interface CreateRebuildMediaTemplateResponse {
3102
3198
  RequestId?: string;
3103
3199
  }
3104
3200
  /**
3105
- * DescribeWordSamples返回参数结构体
3201
+ * 文本关键词识别输出。
3106
3202
  */
3107
- export interface DescribeWordSamplesResponse {
3203
+ export interface AiRecognitionTaskOcrWordsResultOutput {
3108
3204
  /**
3109
- * 符合条件的记录总数。
3205
+ * 文本关键词识别结果集。
3206
+ <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 ResultSetFileUrl 对应的文件中获取。
3110
3207
  */
3111
- TotalCount: number;
3208
+ ResultSet: Array<AiRecognitionTaskOcrWordsResultItem>;
3112
3209
  /**
3113
- * 关键词信息。
3210
+ * 文本关键词识别结果集文件 URL。文件的内容为 JSON,数据结构与 ResultSet 字段一致。 (文件不会永久存储,到达ResultSetFileUrlExpireTime 时间点后文件将被删除)。
3114
3211
  */
3115
- WordSet: Array<AiSampleWord>;
3212
+ ResultSetFileUrl: string;
3116
3213
  /**
3117
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId
3214
+ * 文本关键词识别结果集文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)
3118
3215
  */
3119
- RequestId?: string;
3216
+ ResultSetFileUrlExpireTime: string;
3120
3217
  }
3121
3218
  /**
3122
3219
  * AI 样本管理,人脸信息。
@@ -3160,6 +3257,52 @@ export interface MediaImageSpriteItem {
3160
3257
  */
3161
3258
  WebVttUrl: string;
3162
3259
  }
3260
+ /**
3261
+ * 音画质检测任务信息。
3262
+ */
3263
+ export interface QualityInspectTask {
3264
+ /**
3265
+ * 任务 ID。
3266
+ */
3267
+ TaskId?: string;
3268
+ /**
3269
+ * 任务状态,取值:
3270
+ <li>PROCESSING:处理中;</li>
3271
+ <li>FINISH:已完成。</li>
3272
+ */
3273
+ Status?: string;
3274
+ /**
3275
+ * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
3276
+ */
3277
+ ErrCodeExt?: string;
3278
+ /**
3279
+ * 错误信息。
3280
+ */
3281
+ Message?: string;
3282
+ /**
3283
+ * 音画质检测输入音视频的元信息。
3284
+ 注意:此字段可能返回 null,表示取不到有效值。
3285
+ */
3286
+ MetaData?: MediaMetaData;
3287
+ /**
3288
+ * 音画质检测任务输入。
3289
+ 注意:此字段可能返回 null,表示取不到有效值。
3290
+ */
3291
+ Input?: QualityInspectTaskInput;
3292
+ /**
3293
+ * 音画质检测任务输出。
3294
+ 注意:此字段可能返回 null,表示取不到有效值。
3295
+ */
3296
+ Output?: QualityInspectTaskOutput;
3297
+ /**
3298
+ * 用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
3299
+ */
3300
+ SessionId?: string;
3301
+ /**
3302
+ * 来源上下文,用于透传用户请求信息,音画质检测完成回调将返回该字段值,最长 1000 个字符。
3303
+ */
3304
+ SessionContext?: string;
3305
+ }
3163
3306
  /**
3164
3307
  * DescribeEnhanceMediaTemplates返回参数结构体
3165
3308
  */
@@ -3390,6 +3533,15 @@ export interface CoverBySnapshotTaskOutput {
3390
3533
  */
3391
3534
  CoverUrl: string;
3392
3535
  }
3536
+ /**
3537
+ * ModifyQualityInspectTemplate返回参数结构体
3538
+ */
3539
+ export interface ModifyQualityInspectTemplateResponse {
3540
+ /**
3541
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3542
+ */
3543
+ RequestId?: string;
3544
+ }
3393
3545
  /**
3394
3546
  * 文字水印模板
3395
3547
  */
@@ -4329,6 +4481,17 @@ export interface CreateWordSamplesRequest {
4329
4481
  */
4330
4482
  SubAppId?: number;
4331
4483
  }
4484
+ /**
4485
+ * 视频画面模糊检测的控制参数。
4486
+ */
4487
+ export interface BlurConfigureInfo {
4488
+ /**
4489
+ * 视频画面模糊检测开关,可选值:
4490
+ <li>ON:开启;</li>
4491
+ <li>OFF:关闭。</li>
4492
+ */
4493
+ Switch: string;
4494
+ }
4332
4495
  /**
4333
4496
  * 语音鉴别涉及令人不适宜的信息的任务控制参数。
4334
4497
  */
@@ -4553,6 +4716,17 @@ export interface AiRecognitionTaskSegmentResult {
4553
4716
  */
4554
4717
  FinishTime?: string;
4555
4718
  }
4719
+ /**
4720
+ * 视频画面抖动重影检测的控制参数。
4721
+ */
4722
+ export interface JitterConfigureInfo {
4723
+ /**
4724
+ * 视频画面抖动重影检测开关,可选值:
4725
+ <li>ON:开启;</li>
4726
+ <li>OFF:关闭。</li>
4727
+ */
4728
+ Switch: string;
4729
+ }
4556
4730
  /**
4557
4731
  * 字幕信息。
4558
4732
  */
@@ -5184,6 +5358,17 @@ export interface ReduceMediaBitrateTask {
5184
5358
  */
5185
5359
  SessionId: string;
5186
5360
  }
5361
+ /**
5362
+ * 视频画面花屏检测的控制参数。
5363
+ */
5364
+ export interface CrashScreenConfigureInfo {
5365
+ /**
5366
+ * 视频画面花屏检测开关,可选值:
5367
+ <li>ON:开启;</li>
5368
+ <li>OFF:关闭。</li>
5369
+ */
5370
+ Switch: string;
5371
+ }
5187
5372
  /**
5188
5373
  * CreateReviewTemplate请求参数结构体
5189
5374
  */
@@ -6209,6 +6394,17 @@ export interface UserDefineConfigureInfo {
6209
6394
  */
6210
6395
  OcrReviewInfo?: UserDefineOcrTextReviewTemplateInfo;
6211
6396
  }
6397
+ /**
6398
+ * 视频画面噪点检测的控制参数。
6399
+ */
6400
+ export interface NoiseConfigureInfoForUpdate {
6401
+ /**
6402
+ * 视频画面噪点检测开关,可选值:
6403
+ <li>ON:开启;</li>
6404
+ <li>OFF:关闭。</li>
6405
+ */
6406
+ Switch?: string;
6407
+ }
6212
6408
  /**
6213
6409
  * 视频拆条片段。
6214
6410
  */
@@ -6793,6 +6989,17 @@ export interface AiAnalysisTaskTagOutput {
6793
6989
  */
6794
6990
  TagSetFileUrlExpireTime: string;
6795
6991
  }
6992
+ /**
6993
+ * 视频画面马赛克检测的控制参数。
6994
+ */
6995
+ export interface MosaicConfigureInfo {
6996
+ /**
6997
+ * 视频画面马赛克检测开关,可选值:
6998
+ <li>ON:开启;</li>
6999
+ <li>OFF:关闭。</li>
7000
+ */
7001
+ Switch: string;
7002
+ }
6796
7003
  /**
6797
7004
  * 智能精彩片段结果信息
6798
7005
  */
@@ -7420,50 +7627,15 @@ export interface MediaProcessTaskTranscodeResult {
7420
7627
  FinishTime: string;
7421
7628
  }
7422
7629
  /**
7423
- * 域名信息
7630
+ * 视频画面模糊检测的控制参数。
7424
7631
  */
7425
- export interface DomainDetailInfo {
7426
- /**
7427
- * 域名名称。
7428
- */
7429
- Domain: string;
7430
- /**
7431
- * 加速地区信息。
7432
- 注意:此字段可能返回 null,表示取不到有效值。
7433
- */
7434
- AccelerateAreaInfos: Array<AccelerateAreaInfo>;
7435
- /**
7436
- * 部署状态,取值有:
7437
- <li>Online:上线;</li>
7438
- <li>Deploying:部署中;</li>
7439
- <li>Locked: 锁定中,出现该状态时,无法对该域名进行部署变更。</li>
7440
- */
7441
- DeployStatus: string;
7442
- /**
7443
- * HTTPS 配置信息。
7444
- 注意:此字段可能返回 null,表示取不到有效值。
7445
- */
7446
- HTTPSConfig: DomainHTTPSConfig;
7447
- /**
7448
- * [Key 防盗链](https://cloud.tencent.com/document/product/266/14047)配置信息。
7449
- 注意:此字段可能返回 null,表示取不到有效值。
7450
- */
7451
- UrlSignatureAuthPolicy: UrlSignatureAuthPolicy;
7452
- /**
7453
- * [Referer 防盗链](https://cloud.tencent.com/document/product/266/14046)配置信息。
7454
- 注意:此字段可能返回 null,表示取不到有效值。
7455
- */
7456
- RefererAuthPolicy: RefererAuthPolicy;
7457
- /**
7458
- * 域名添加到腾讯云点播系统中的时间。
7459
- <li>格式按照 ISO 8601标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F)。</li>
7460
- */
7461
- CreateTime: string;
7632
+ export interface BlurConfigureInfoForUpdate {
7462
7633
  /**
7463
- * 域名 QUIC 配置信息。
7464
- 注意:此字段可能返回 null,表示取不到有效值。
7634
+ * 视频画面模糊检测开关,可选值:
7635
+ <li>ON:开启;</li>
7636
+ <li>OFF:关闭。</li>
7465
7637
  */
7466
- QUICConfig?: DomainQUICConfig;
7638
+ Switch?: string;
7467
7639
  }
7468
7640
  /**
7469
7641
  * 视频流配置信息
@@ -8401,6 +8573,30 @@ export interface CreateWatermarkTemplateRequest {
8401
8573
  */
8402
8574
  SvgTemplate?: SvgWatermarkInput;
8403
8575
  }
8576
+ /**
8577
+ * 视频画面黑边、白边、黑屏、白屏检测的控制参数。
8578
+ */
8579
+ export interface BlackWhiteEdgeConfigureInfo {
8580
+ /**
8581
+ * 视频画面黑边、白边、黑屏、白屏检测开关,可选值:
8582
+ <li>ON:开启;</li>
8583
+ <li>OFF:关闭。</li>
8584
+ */
8585
+ Switch: string;
8586
+ }
8587
+ /**
8588
+ * 排序依据
8589
+ */
8590
+ export interface SortBy {
8591
+ /**
8592
+ * 排序字段
8593
+ */
8594
+ Field: string;
8595
+ /**
8596
+ * 排序方式,可选值:Asc(升序)、Desc(降序)
8597
+ */
8598
+ Order: string;
8599
+ }
8404
8600
  /**
8405
8601
  * 鉴别涉及令人不安全的信息的任务控制参数。
8406
8602
  */
@@ -8588,6 +8784,16 @@ export interface ImageScale {
8588
8784
  */
8589
8785
  ShortEdge?: number;
8590
8786
  }
8787
+ /**
8788
+ * 图片智能内容识别任务输入
8789
+ */
8790
+ export interface ImageContentReviewInput {
8791
+ /**
8792
+ * 图片智能内容审核模板 ID。当前只支持:
8793
+ <li>10:所有审核类型均打开。</li>
8794
+ */
8795
+ Definition: number;
8796
+ }
8591
8797
  /**
8592
8798
  * 视频转码播放信息(2017 版)
8593
8799
  */
@@ -8675,31 +8881,96 @@ export interface ComposeMediaTaskInput {
8675
8881
  Output: ComposeMediaOutput;
8676
8882
  }
8677
8883
  /**
8678
- * 转动图任务类型
8884
+ * ModifyQualityInspectTemplate请求参数结构体
8679
8885
  */
8680
- export interface AnimatedGraphicTaskInput {
8886
+ export interface ModifyQualityInspectTemplateRequest {
8681
8887
  /**
8682
- * 视频转动图模板 ID
8888
+ * 模板 ID
8683
8889
  */
8684
8890
  Definition: number;
8685
8891
  /**
8686
- * 动图在视频中的起始时间偏移,单位为秒。
8687
- <li>不填或填0,表示从视频的起始位置开始;</li>
8688
- <li>当数值大于0时(假设为 n),表示从视频的第 n 秒位置开始;</li>
8689
- <li>当数值小于0时(假设为 -n),表示从视频结束 n 秒前的位置开始。</li>
8892
+ * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
8690
8893
  */
8691
- StartTimeOffset: number;
8894
+ SubAppId?: number;
8692
8895
  /**
8693
- * 动图在视频中的终止时间偏移,单位为秒。
8694
- <li>不填或填0,表示持续到视频的末尾终止;</li>
8695
- <li>当数值大于0时(假设为 n),表示持续到视频第 n 秒时终止;</li>
8696
- <li>当数值小于0时(假设为 -n),表示持续到视频结束 n 秒前终止。</li>
8896
+ * 模板名称,长度限制:64 个字符。
8697
8897
  */
8698
- EndTimeOffset: number;
8699
- }
8700
- /**
8701
- * 视频处理任务中的马赛克参数类型
8702
- */
8898
+ Name?: string;
8899
+ /**
8900
+ * 模板描述信息,长度限制:256 个字符。
8901
+ */
8902
+ Comment?: string;
8903
+ /**
8904
+ * 截帧间隔,单位为秒,最小值为 1。
8905
+ */
8906
+ ScreenshotInterval?: number;
8907
+ /**
8908
+ * 视频画面抖动重影检测的控制参数。
8909
+ */
8910
+ JitterConfigure?: JitterConfigureInfoForUpdate;
8911
+ /**
8912
+ * 视频画面模糊检测的控制参数。
8913
+ */
8914
+ BlurConfigure?: BlurConfigureInfoForUpdate;
8915
+ /**
8916
+ * 视频画面低光、过曝检测的控制参数。
8917
+ */
8918
+ AbnormalLightingConfigure?: AbnormalLightingConfigureInfoForUpdate;
8919
+ /**
8920
+ * 视频画面花屏检测的控制参数。
8921
+ */
8922
+ CrashScreenConfigure?: CrashScreenConfigureInfoForUpdate;
8923
+ /**
8924
+ * 视频画面黑边、白边、黑屏、白屏检测的控制参数。
8925
+ */
8926
+ BlackWhiteEdgeConfigure?: BlackWhiteEdgeConfigureInfoForUpdate;
8927
+ /**
8928
+ * 视频画面噪点检测的控制参数。
8929
+ */
8930
+ NoiseConfigure?: NoiseConfigureInfoForUpdate;
8931
+ /**
8932
+ * 视频画面马赛克检测的控制参数。
8933
+ */
8934
+ MosaicConfigure?: MosaicConfigureInfoForUpdate;
8935
+ /**
8936
+ * 视频画面二维码检测的控制参数。
8937
+ */
8938
+ QRCodeConfigure?: QRCodeConfigureInfoForUpdate;
8939
+ /**
8940
+ * 视频画面质量评价的控制参数。
8941
+ */
8942
+ QualityEvaluationConfigure?: QualityEvaluationConfigureInfoForUpdate;
8943
+ /**
8944
+ * 音频(静音、低音、爆音)检测的控制参数。
8945
+ */
8946
+ VoiceConfigure?: VoiceConfigureInfoForUpdate;
8947
+ }
8948
+ /**
8949
+ * 转动图任务类型
8950
+ */
8951
+ export interface AnimatedGraphicTaskInput {
8952
+ /**
8953
+ * 视频转动图模板 ID
8954
+ */
8955
+ Definition: number;
8956
+ /**
8957
+ * 动图在视频中的起始时间偏移,单位为秒。
8958
+ <li>不填或填0,表示从视频的起始位置开始;</li>
8959
+ <li>当数值大于0时(假设为 n),表示从视频的第 n 秒位置开始;</li>
8960
+ <li>当数值小于0时(假设为 -n),表示从视频结束 n 秒前的位置开始。</li>
8961
+ */
8962
+ StartTimeOffset: number;
8963
+ /**
8964
+ * 动图在视频中的终止时间偏移,单位为秒。
8965
+ <li>不填或填0,表示持续到视频的末尾终止;</li>
8966
+ <li>当数值大于0时(假设为 n),表示持续到视频第 n 秒时终止;</li>
8967
+ <li>当数值小于0时(假设为 -n),表示持续到视频结束 n 秒前终止。</li>
8968
+ */
8969
+ EndTimeOffset: number;
8970
+ }
8971
+ /**
8972
+ * 视频处理任务中的马赛克参数类型
8973
+ */
8703
8974
  export interface MosaicInput {
8704
8975
  /**
8705
8976
  * 原点位置,目前仅支持:
@@ -9254,13 +9525,17 @@ export interface DescribeImageProcessingTemplatesRequest {
9254
9525
  Limit?: number;
9255
9526
  }
9256
9527
  /**
9257
- * ResetProcedureTemplate返回参数结构体
9528
+ * 音画质检测任务的输入。
9258
9529
  */
9259
- export interface ResetProcedureTemplateResponse {
9530
+ export interface QualityInspectTaskInput {
9260
9531
  /**
9261
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId
9532
+ * 媒体文件 ID。
9262
9533
  */
9263
- RequestId?: string;
9534
+ FileId?: string;
9535
+ /**
9536
+ * 音画质检测模板 ID。
9537
+ */
9538
+ Definition?: number;
9264
9539
  }
9265
9540
  /**
9266
9541
  * 违禁任务控制参数
@@ -9807,6 +10082,52 @@ export interface ProcedureTemplate {
9807
10082
  */
9808
10083
  UpdateTime?: string;
9809
10084
  }
10085
+ /**
10086
+ * 域名信息
10087
+ */
10088
+ export interface DomainDetailInfo {
10089
+ /**
10090
+ * 域名名称。
10091
+ */
10092
+ Domain: string;
10093
+ /**
10094
+ * 加速地区信息。
10095
+ 注意:此字段可能返回 null,表示取不到有效值。
10096
+ */
10097
+ AccelerateAreaInfos: Array<AccelerateAreaInfo>;
10098
+ /**
10099
+ * 部署状态,取值有:
10100
+ <li>Online:上线;</li>
10101
+ <li>Deploying:部署中;</li>
10102
+ <li>Locked: 锁定中,出现该状态时,无法对该域名进行部署变更。</li>
10103
+ */
10104
+ DeployStatus: string;
10105
+ /**
10106
+ * HTTPS 配置信息。
10107
+ 注意:此字段可能返回 null,表示取不到有效值。
10108
+ */
10109
+ HTTPSConfig: DomainHTTPSConfig;
10110
+ /**
10111
+ * [Key 防盗链](https://cloud.tencent.com/document/product/266/14047)配置信息。
10112
+ 注意:此字段可能返回 null,表示取不到有效值。
10113
+ */
10114
+ UrlSignatureAuthPolicy: UrlSignatureAuthPolicy;
10115
+ /**
10116
+ * [Referer 防盗链](https://cloud.tencent.com/document/product/266/14046)配置信息。
10117
+ 注意:此字段可能返回 null,表示取不到有效值。
10118
+ */
10119
+ RefererAuthPolicy: RefererAuthPolicy;
10120
+ /**
10121
+ * 域名添加到腾讯云点播系统中的时间。
10122
+ <li>格式按照 ISO 8601标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F)。</li>
10123
+ */
10124
+ CreateTime: string;
10125
+ /**
10126
+ * 域名 QUIC 配置信息。
10127
+ 注意:此字段可能返回 null,表示取不到有效值。
10128
+ */
10129
+ QUICConfig?: DomainQUICConfig;
10130
+ }
9810
10131
  /**
9811
10132
  * 音视频审核涉及令人不安全的信息的任务结果类型
9812
10133
  */
@@ -10042,6 +10363,17 @@ export interface CreateSnapshotByTimeOffsetTemplateResponse {
10042
10363
  */
10043
10364
  RequestId?: string;
10044
10365
  }
10366
+ /**
10367
+ * 音频(静音、低音、爆音)检测的控制参数。
10368
+ */
10369
+ export interface VoiceConfigureInfoForUpdate {
10370
+ /**
10371
+ * 音频(静音、低音、爆音)检测开关,可选值:
10372
+ <li>ON:开启;</li>
10373
+ <li>OFF:关闭。</li>
10374
+ */
10375
+ Switch?: string;
10376
+ }
10045
10377
  /**
10046
10378
  * ModifyContentReviewTemplate请求参数结构体
10047
10379
  */
@@ -10095,72 +10427,6 @@ export interface ModifyContentReviewTemplateRequest {
10095
10427
  */
10096
10428
  ReviewWallSwitch?: string;
10097
10429
  }
10098
- /**
10099
- * DeleteReviewTemplate请求参数结构体
10100
- */
10101
- export interface DeleteReviewTemplateRequest {
10102
- /**
10103
- * 审核模板唯一标识。
10104
- */
10105
- Definition: number;
10106
- /**
10107
- * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
10108
- */
10109
- SubAppId?: number;
10110
- }
10111
- /**
10112
- * AttachMediaSubtitles返回参数结构体
10113
- */
10114
- export interface AttachMediaSubtitlesResponse {
10115
- /**
10116
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10117
- */
10118
- RequestId?: string;
10119
- }
10120
- /**
10121
- * 音视频审核任务类型
10122
- */
10123
- export interface AiContentReviewTaskInput {
10124
- /**
10125
- * 音视频审核模板 ID。
10126
- */
10127
- Definition: number;
10128
- }
10129
- /**
10130
- * CreateAdaptiveDynamicStreamingTemplate返回参数结构体
10131
- */
10132
- export interface CreateAdaptiveDynamicStreamingTemplateResponse {
10133
- /**
10134
- * 自适应转码模板唯一标识。
10135
- */
10136
- Definition: number;
10137
- /**
10138
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10139
- */
10140
- RequestId?: string;
10141
- }
10142
- /**
10143
- * DeleteSampleSnapshotTemplate请求参数结构体
10144
- */
10145
- export interface DeleteSampleSnapshotTemplateRequest {
10146
- /**
10147
- * 采样截图模板唯一标识。
10148
- */
10149
- Definition: number;
10150
- /**
10151
- * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
10152
- */
10153
- SubAppId?: number;
10154
- }
10155
- /**
10156
- * AI 视频智能分析输入参数类型
10157
- */
10158
- export interface AiAnalysisTaskInput {
10159
- /**
10160
- * 视频内容分析模板 ID。
10161
- */
10162
- Definition: number;
10163
- }
10164
10430
  /**
10165
10431
  * 雪碧图模板详情
10166
10432
  */
@@ -10244,6 +10510,92 @@ export interface ImageSpriteTemplate {
10244
10510
  */
10245
10511
  Format: string;
10246
10512
  }
10513
+ /**
10514
+ * DeleteReviewTemplate请求参数结构体
10515
+ */
10516
+ export interface DeleteReviewTemplateRequest {
10517
+ /**
10518
+ * 审核模板唯一标识。
10519
+ */
10520
+ Definition: number;
10521
+ /**
10522
+ * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
10523
+ */
10524
+ SubAppId?: number;
10525
+ }
10526
+ /**
10527
+ * AttachMediaSubtitles返回参数结构体
10528
+ */
10529
+ export interface AttachMediaSubtitlesResponse {
10530
+ /**
10531
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10532
+ */
10533
+ RequestId?: string;
10534
+ }
10535
+ /**
10536
+ * 音视频审核任务类型
10537
+ */
10538
+ export interface AiContentReviewTaskInput {
10539
+ /**
10540
+ * 音视频审核模板 ID。
10541
+ */
10542
+ Definition: number;
10543
+ }
10544
+ /**
10545
+ * CreateAdaptiveDynamicStreamingTemplate返回参数结构体
10546
+ */
10547
+ export interface CreateAdaptiveDynamicStreamingTemplateResponse {
10548
+ /**
10549
+ * 自适应转码模板唯一标识。
10550
+ */
10551
+ Definition: number;
10552
+ /**
10553
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10554
+ */
10555
+ RequestId?: string;
10556
+ }
10557
+ /**
10558
+ * DeleteSampleSnapshotTemplate请求参数结构体
10559
+ */
10560
+ export interface DeleteSampleSnapshotTemplateRequest {
10561
+ /**
10562
+ * 采样截图模板唯一标识。
10563
+ */
10564
+ Definition: number;
10565
+ /**
10566
+ * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
10567
+ */
10568
+ SubAppId?: number;
10569
+ }
10570
+ /**
10571
+ * DescribeTranscodeTemplates返回参数结构体
10572
+ */
10573
+ export interface DescribeTranscodeTemplatesResponse {
10574
+ /**
10575
+ * 符合过滤条件的记录总数。
10576
+ */
10577
+ TotalCount: number;
10578
+ /**
10579
+ * 转码模板详情列表。
10580
+ 注意:此字段可能返回 null,表示取不到有效值。
10581
+ */
10582
+ TranscodeTemplateSet: Array<TranscodeTemplate>;
10583
+ /**
10584
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10585
+ */
10586
+ RequestId?: string;
10587
+ }
10588
+ /**
10589
+ * 视频画面低光、过曝检测的控制参数。
10590
+ */
10591
+ export interface AbnormalLightingConfigureInfoForUpdate {
10592
+ /**
10593
+ * 视频画面低光、过曝检测开关,可选值:
10594
+ <li>ON:开启;</li>
10595
+ <li>OFF:关闭。</li>
10596
+ */
10597
+ Switch?: string;
10598
+ }
10247
10599
  /**
10248
10600
  * 文本全文识别片段。
10249
10601
  */
@@ -10690,17 +11042,65 @@ export interface PullUploadRequest {
10690
11042
  SourceContext?: string;
10691
11043
  }
10692
11044
  /**
10693
- * 排序依据
11045
+ * CreateQualityInspectTemplate请求参数结构体
10694
11046
  */
10695
- export interface SortBy {
11047
+ export interface CreateQualityInspectTemplateRequest {
11048
+ /**
11049
+ * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
11050
+ */
11051
+ SubAppId?: number;
11052
+ /**
11053
+ * 音画质检测模板名称。
11054
+ */
11055
+ Name?: string;
11056
+ /**
11057
+ * 音画质检测模板描述。
11058
+ */
11059
+ Comment?: string;
11060
+ /**
11061
+ * 截帧间隔,单位为秒,最小值为 1。当不填时,默认截帧间隔为 1 秒。
11062
+ */
11063
+ ScreenshotInterval?: number;
11064
+ /**
11065
+ * 视频画面抖动重影检测的控制参数。
11066
+ */
11067
+ JitterConfigure?: JitterConfigureInfo;
11068
+ /**
11069
+ * 视频画面模糊检测的控制参数。
11070
+ */
11071
+ BlurConfigure?: BlurConfigureInfo;
11072
+ /**
11073
+ * 视频画面低光、过曝检测的控制参数。
11074
+ */
11075
+ AbnormalLightingConfigure?: AbnormalLightingConfigureInfo;
11076
+ /**
11077
+ * 视频画面花屏检测的控制参数。
11078
+ */
11079
+ CrashScreenConfigure?: CrashScreenConfigureInfo;
11080
+ /**
11081
+ * 视频画面黑边、白边、黑屏、白屏检测的控制参数。
11082
+ */
11083
+ BlackWhiteEdgeConfigure?: BlackWhiteEdgeConfigureInfo;
11084
+ /**
11085
+ * 视频画面噪点检测的控制参数。
11086
+ */
11087
+ NoiseConfigure?: NoiseConfigureInfo;
11088
+ /**
11089
+ * 视频画面马赛克检测的控制参数。
11090
+ */
11091
+ MosaicConfigure?: MosaicConfigureInfo;
10696
11092
  /**
10697
- * 排序字段
11093
+ * 视频画面二维码检测的控制参数。
10698
11094
  */
10699
- Field: string;
11095
+ QRCodeConfigure?: QRCodeConfigureInfo;
10700
11096
  /**
10701
- * 排序方式,可选值:Asc(升序)、Desc(降序)
11097
+ * 视频画面质量评价的控制参数。
10702
11098
  */
10703
- Order: string;
11099
+ QualityEvaluationConfigure?: QualityEvaluationConfigureInfo;
11100
+ /**
11101
+ * 音频(静音、低音、爆音)检测的控制参数。
11102
+ */
11103
+ VoiceConfigure?: VoiceConfigureInfo;
10704
11104
  }
10705
11105
  /**
10706
11106
  * ProcessMediaByProcedure请求参数结构体
@@ -10802,6 +11202,17 @@ export interface RebuildMediaTargetVideoStream {
10802
11202
  */
10803
11203
  Gop?: number;
10804
11204
  }
11205
+ /**
11206
+ * 音频(静音、低音、爆音)检测的控制参数。
11207
+ */
11208
+ export interface VoiceConfigureInfo {
11209
+ /**
11210
+ * 音频(静音、低音、爆音)检测开关,可选值:
11211
+ <li>ON:开启;</li>
11212
+ <li>OFF:关闭。</li>
11213
+ */
11214
+ Switch: string;
11215
+ }
10805
11216
  /**
10806
11217
  * 视频剪辑任务信息,该结构仅用于对 2017 版[视频剪辑](https://cloud.tencent.com/document/product/266/10156)接口发起的任务。
10807
11218
  */
@@ -11280,6 +11691,17 @@ export interface DeleteSuperPlayerConfigResponse {
11280
11691
  */
11281
11692
  RequestId?: string;
11282
11693
  }
11694
+ /**
11695
+ * 视频画面花屏检测的控制参数。
11696
+ */
11697
+ export interface CrashScreenConfigureInfoForUpdate {
11698
+ /**
11699
+ * 视频画面花屏检测开关,可选值:
11700
+ <li>ON:开启;</li>
11701
+ <li>OFF:关闭。</li>
11702
+ */
11703
+ Switch?: string;
11704
+ }
11283
11705
  /**
11284
11706
  * DescribeSampleSnapshotTemplates请求参数结构体
11285
11707
  */
@@ -11586,6 +12008,17 @@ export interface ModifyAIRecognitionTemplateRequest {
11586
12008
  */
11587
12009
  ScreenshotInterval?: number;
11588
12010
  }
12011
+ /**
12012
+ * 视频画面二维码检测的控制参数。
12013
+ */
12014
+ export interface QRCodeConfigureInfo {
12015
+ /**
12016
+ * 视频画面二维码检测开关,可选值:
12017
+ <li>ON:开启;</li>
12018
+ <li>OFF:关闭。</li>
12019
+ */
12020
+ Switch: string;
12021
+ }
11589
12022
  /**
11590
12023
  * DescribeStorageRegions请求参数结构体
11591
12024
  */
@@ -11948,6 +12381,7 @@ export interface EventContent {
11948
12381
  <li>ExtractTraceWatermarkComplete:提取溯源水印完成;</li>
11949
12382
  <li>ExtractCopyRightWatermarkComplete:提取版权水印完成;</li>
11950
12383
  <li>DescribeFileAttributesComplete:获取文件属性完成;</li>
12384
+ <li>QualityInspectComplete:音画质检测完成。</li>
11951
12385
  <b>兼容 2017 版的事件类型:</b>
11952
12386
  <li>TranscodeComplete:视频转码完成;</li>
11953
12387
  <li>ConcatComplete:视频拼接完成;</li>
@@ -12066,6 +12500,11 @@ export interface EventContent {
12066
12500
  注意:此字段可能返回 null,表示取不到有效值。
12067
12501
  */
12068
12502
  DescribeFileAttributesCompleteEvent: DescribeFileAttributesTask;
12503
+ /**
12504
+ * 音画质检测完成事件,当事件类型为 QualityInspectComplete 时有效。
12505
+ 注意:此字段可能返回 null,表示取不到有效值。
12506
+ */
12507
+ QualityInspectCompleteEvent?: QualityInspectTask;
12069
12508
  }
12070
12509
  /**
12071
12510
  * 智能精彩片段任务控制参数
@@ -12182,6 +12621,17 @@ export interface ModifyClassRequest {
12182
12621
  */
12183
12622
  SubAppId?: number;
12184
12623
  }
12624
+ /**
12625
+ * 视频画面二维码检测的控制参数。
12626
+ */
12627
+ export interface QRCodeConfigureInfoForUpdate {
12628
+ /**
12629
+ * 视频画面二维码检测开关,可选值:
12630
+ <li>ON:开启;</li>
12631
+ <li>OFF:关闭。</li>
12632
+ */
12633
+ Switch?: string;
12634
+ }
12185
12635
  /**
12186
12636
  * 指定规格任务统计数据。
12187
12637
  */
@@ -12238,6 +12688,33 @@ export interface ComposeMediaTaskOutput {
12238
12688
  */
12239
12689
  ExpireTime: string;
12240
12690
  }
12691
+ /**
12692
+ * DescribeQualityInspectTemplates请求参数结构体
12693
+ */
12694
+ export interface DescribeQualityInspectTemplatesRequest {
12695
+ /**
12696
+ * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
12697
+ */
12698
+ SubAppId?: number;
12699
+ /**
12700
+ * 音画质检测模板列表。长度限制:100。
12701
+ */
12702
+ Definitions?: Array<number>;
12703
+ /**
12704
+ * 模板类型过滤条件,可选值:
12705
+ <li>Preset:系统预置模板;</li>
12706
+ <li>Custom:用户自定义模板。</li>
12707
+ */
12708
+ Type?: string;
12709
+ /**
12710
+ * 分页偏移量,默认值:0。
12711
+ */
12712
+ Offset?: number;
12713
+ /**
12714
+ * 返回记录条数,默认值:10,最大值:100。
12715
+ */
12716
+ Limit?: number;
12717
+ }
12241
12718
  /**
12242
12719
  * DescribeMediaInfos请求参数结构体
12243
12720
  */
@@ -12638,14 +13115,13 @@ export interface AiRecognitionTaskAsrFullTextResult {
12638
13115
  FinishTime?: string;
12639
13116
  }
12640
13117
  /**
12641
- * 图片智能内容识别任务输入
13118
+ * DeleteQualityInspectTemplate返回参数结构体
12642
13119
  */
12643
- export interface ImageContentReviewInput {
13120
+ export interface DeleteQualityInspectTemplateResponse {
12644
13121
  /**
12645
- * 图片智能内容审核模板 ID。当前只支持:
12646
- <li>10:所有审核类型均打开。</li>
13122
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
12647
13123
  */
12648
- Definition: number;
13124
+ RequestId?: string;
12649
13125
  }
12650
13126
  /**
12651
13127
  * 播放统计信息。
@@ -13048,6 +13524,19 @@ export interface MediaSampleSnapshotInfo {
13048
13524
  */
13049
13525
  SampleSnapshotSet: Array<MediaSampleSnapshotItem>;
13050
13526
  }
13527
+ /**
13528
+ * InspectMediaQuality返回参数结构体
13529
+ */
13530
+ export interface InspectMediaQualityResponse {
13531
+ /**
13532
+ * 音画质检测任务 ID。
13533
+ */
13534
+ TaskId?: string;
13535
+ /**
13536
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
13537
+ */
13538
+ RequestId?: string;
13539
+ }
13051
13540
  /**
13052
13541
  * DescribeSubAppIds返回参数结构体
13053
13542
  */
@@ -13325,6 +13814,39 @@ export interface DescribeImageSpriteTemplatesResponse {
13325
13814
  */
13326
13815
  RequestId?: string;
13327
13816
  }
13817
+ /**
13818
+ * InspectMediaQuality请求参数结构体
13819
+ */
13820
+ export interface InspectMediaQualityRequest {
13821
+ /**
13822
+ * 媒体文件 ID,即该文件在云点播上的全局唯一标识符,在上传成功后由云点播后台分配。可以在 [视频上传完成事件通知](/document/product/266/7830) 或 [云点播控制台](https://console.cloud.tencent.com/vod/media) 获取该字段。
13823
+ */
13824
+ FileId: string;
13825
+ /**
13826
+ * 音画质检测模板 ID。
13827
+ */
13828
+ Definition: number;
13829
+ /**
13830
+ * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
13831
+ */
13832
+ SubAppId?: number;
13833
+ /**
13834
+ * 任务的优先级,数值越大优先级越高,取值范围是 -10 到 10,不填代表 0。
13835
+ */
13836
+ TasksPriority?: number;
13837
+ /**
13838
+ * 来源上下文,用于透传用户请求信息,音画质检测完成回调将返回该字段值,最长 1000 个字符。
13839
+ */
13840
+ SessionContext?: string;
13841
+ /**
13842
+ * 用于去重的识别码,如果三天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
13843
+ */
13844
+ SessionId?: string;
13845
+ /**
13846
+ * 保留字段,特殊用途时使用。
13847
+ */
13848
+ ExtInfo?: string;
13849
+ }
13328
13850
  /**
13329
13851
  * 智能按帧标签任务输入类型
13330
13852
  */
@@ -13364,6 +13886,19 @@ export interface AiRecognitionTaskAsrWordsResultItem {
13364
13886
  */
13365
13887
  SegmentSet: Array<AiRecognitionTaskAsrWordsSegmentItem>;
13366
13888
  }
13889
+ /**
13890
+ * CreateQualityInspectTemplate返回参数结构体
13891
+ */
13892
+ export interface CreateQualityInspectTemplateResponse {
13893
+ /**
13894
+ * 音画质检测模板 ID。
13895
+ */
13896
+ Definition?: number;
13897
+ /**
13898
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
13899
+ */
13900
+ RequestId?: string;
13901
+ }
13367
13902
  /**
13368
13903
  * 音画质重生任务输出
13369
13904
  */
@@ -13515,7 +14050,8 @@ export interface DescribeTaskDetailResponse {
13515
14050
  <li>RebuildMedia:音画质重生任务;</li>
13516
14051
  <li>ReviewAudioVideo:音视频审核任务;</li>
13517
14052
  <li>ExtractTraceWatermark:提取溯源水印任务;</li>
13518
- <li>ExtractCopyRightWatermark:提取版权水印任务。</li>
14053
+ <li>ExtractCopyRightWatermark:提取版权水印任务;</li>
14054
+ <li>QualityInspect:音画质检测任务。</li>
13519
14055
  */
13520
14056
  TaskType?: string;
13521
14057
  /**
@@ -13632,6 +14168,11 @@ export interface DescribeTaskDetailResponse {
13632
14168
  注意:此字段可能返回 null,表示取不到有效值。
13633
14169
  */
13634
14170
  DescribeFileAttributesTask?: DescribeFileAttributesTask;
14171
+ /**
14172
+ * 音画质检测任务信息,仅当 TaskType 为 QualityInspect 时该字段有值。
14173
+ 注意:此字段可能返回 null,表示取不到有效值。
14174
+ */
14175
+ QualityInspectTask?: QualityInspectTask;
13635
14176
  /**
13636
14177
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
13637
14178
  */
@@ -15540,6 +16081,17 @@ export interface MediaSubStreamInfoItem {
15540
16081
  */
15541
16082
  Size?: number;
15542
16083
  }
16084
+ /**
16085
+ * 视频画面马赛克检测的控制参数。
16086
+ */
16087
+ export interface MosaicConfigureInfoForUpdate {
16088
+ /**
16089
+ * 视频画面马赛克检测开关,可选值:
16090
+ <li>ON:开启;</li>
16091
+ <li>OFF:关闭。</li>
16092
+ */
16093
+ Switch?: string;
16094
+ }
15543
16095
  /**
15544
16096
  * DescribeWatermarkTemplates返回参数结构体
15545
16097
  */
@@ -16268,6 +16820,23 @@ export interface CreateSnapshotByTimeOffsetTemplateRequest {
16268
16820
  */
16269
16821
  FillType?: string;
16270
16822
  }
16823
+ /**
16824
+ * DescribeQualityInspectTemplates返回参数结构体
16825
+ */
16826
+ export interface DescribeQualityInspectTemplatesResponse {
16827
+ /**
16828
+ * 符合过滤条件的记录总数。
16829
+ */
16830
+ TotalCount?: number;
16831
+ /**
16832
+ * 音画质检测模板详情列表。
16833
+ */
16834
+ QualityInspectTemplateSet?: Array<QualityInspectTemplateItem>;
16835
+ /**
16836
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
16837
+ */
16838
+ RequestId?: string;
16839
+ }
16271
16840
  /**
16272
16841
  * 语音关键词识别结果。
16273
16842
  */
@@ -16689,6 +17258,17 @@ export interface ModifyClassResponse {
16689
17258
  */
16690
17259
  RequestId?: string;
16691
17260
  }
17261
+ /**
17262
+ * 视频画面黑边、白边、黑屏、白屏检测的控制参数。
17263
+ */
17264
+ export interface BlackWhiteEdgeConfigureInfoForUpdate {
17265
+ /**
17266
+ * 视频画面黑边、白边、黑屏、白屏检测开关,可选值:
17267
+ <li>ON:开启;</li>
17268
+ <li>OFF:关闭。</li>
17269
+ */
17270
+ Switch?: string;
17271
+ }
16692
17272
  /**
16693
17273
  * 编辑点播视频文件信息
16694
17274
  */
@@ -16878,6 +17458,91 @@ export interface PornImgReviewTemplateInfo {
16878
17458
  */
16879
17459
  ReviewConfidence?: number;
16880
17460
  }
17461
+ /**
17462
+ * 音画质检测模板详情。
17463
+ */
17464
+ export interface QualityInspectTemplateItem {
17465
+ /**
17466
+ * 模板 ID。
17467
+ */
17468
+ Definition?: number;
17469
+ /**
17470
+ * 模板类型,可选值:
17471
+ <li>Preset:系统预置模板;</li>
17472
+ <li>Custom:用户自定义模板。</li>
17473
+ */
17474
+ Type?: string;
17475
+ /**
17476
+ * 模板名称。
17477
+ */
17478
+ Name?: string;
17479
+ /**
17480
+ * 模板描述。
17481
+ */
17482
+ Comment?: string;
17483
+ /**
17484
+ * 截帧间隔,单位为秒。
17485
+ */
17486
+ ScreenshotInterval?: number;
17487
+ /**
17488
+ * 视频画面抖动重影检测的控制参数。
17489
+ 注意:此字段可能返回 null,表示取不到有效值。
17490
+ */
17491
+ JitterConfigure?: JitterConfigureInfo;
17492
+ /**
17493
+ * 视频画面模糊检测的控制参数。
17494
+ 注意:此字段可能返回 null,表示取不到有效值。
17495
+ */
17496
+ BlurConfigure?: BlurConfigureInfo;
17497
+ /**
17498
+ * 视频画面低光、过曝检测的控制参数。
17499
+ 注意:此字段可能返回 null,表示取不到有效值。
17500
+ */
17501
+ AbnormalLightingConfigure?: AbnormalLightingConfigureInfo;
17502
+ /**
17503
+ * 视频画面花屏检测的控制参数。
17504
+ 注意:此字段可能返回 null,表示取不到有效值。
17505
+ */
17506
+ CrashScreenConfigure?: CrashScreenConfigureInfo;
17507
+ /**
17508
+ * 视频画面黑边、白边、黑屏、白屏检测的控制参数。
17509
+ 注意:此字段可能返回 null,表示取不到有效值。
17510
+ */
17511
+ BlackWhiteEdgeConfigure?: BlackWhiteEdgeConfigureInfo;
17512
+ /**
17513
+ * 视频画面噪点检测的控制参数。
17514
+ 注意:此字段可能返回 null,表示取不到有效值。
17515
+ */
17516
+ NoiseConfigure?: NoiseConfigureInfo;
17517
+ /**
17518
+ * 视频画面马赛克检测的控制参数。
17519
+ 注意:此字段可能返回 null,表示取不到有效值。
17520
+ */
17521
+ MosaicConfigure?: MosaicConfigureInfo;
17522
+ /**
17523
+ * 视频画面二维码检测的控制参数。
17524
+ 注意:此字段可能返回 null,表示取不到有效值。
17525
+ */
17526
+ QRCodeConfigure?: QRCodeConfigureInfo;
17527
+ /**
17528
+ * 视频画面质量评价的控制参数。
17529
+ 注意:此字段可能返回 null,表示取不到有效值。
17530
+ */
17531
+ QualityEvaluationConfigure?: QualityEvaluationConfigureInfo;
17532
+ /**
17533
+ * 音频(静音、低音、爆音)检测的控制参数。
17534
+ 注意:此字段可能返回 null,表示取不到有效值。
17535
+ */
17536
+ VoiceConfigure?: VoiceConfigureInfo;
17537
+ /**
17538
+ * 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
17539
+ */
17540
+ CreateTime?: string;
17541
+ /**
17542
+ * 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
17543
+ */
17544
+ UpdateTime?: string;
17545
+ }
16881
17546
  /**
16882
17547
  * Ocr 文字涉及令人不适宜的信息
16883
17548
  */
@@ -17037,22 +17702,13 @@ export interface MediaClassInfo {
17037
17702
  ClassName: string;
17038
17703
  }
17039
17704
  /**
17040
- * DescribeTranscodeTemplates返回参数结构体
17705
+ * AI 视频智能分析输入参数类型
17041
17706
  */
17042
- export interface DescribeTranscodeTemplatesResponse {
17043
- /**
17044
- * 符合过滤条件的记录总数。
17045
- */
17046
- TotalCount: number;
17047
- /**
17048
- * 转码模板详情列表。
17049
- 注意:此字段可能返回 null,表示取不到有效值。
17050
- */
17051
- TranscodeTemplateSet: Array<TranscodeTemplate>;
17707
+ export interface AiAnalysisTaskInput {
17052
17708
  /**
17053
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId
17709
+ * 视频内容分析模板 ID。
17054
17710
  */
17055
- RequestId?: string;
17711
+ Definition: number;
17056
17712
  }
17057
17713
  /**
17058
17714
  * DeleteAnimatedGraphicsTemplate请求参数结构体
@@ -17163,6 +17819,38 @@ export interface MediaAiAnalysisFrameTagItem {
17163
17819
  */
17164
17820
  Confidence: number;
17165
17821
  }
17822
+ /**
17823
+ * 音画质检测异常片段信息。
17824
+ */
17825
+ export interface QualityInspectItem {
17826
+ /**
17827
+ * 置信度,取值范围:[0, 100]。
17828
+ <font color=red>注意:</font> 仅当 Type 取值为下列之一时,本字段取值有效:
17829
+ <li>Mosaic:马赛克;</li>
17830
+ <li>QRCode:二维码;</li>
17831
+ <li>AppletCode:小程序码;</li>
17832
+ <li>BarCode:条形码。</li>
17833
+ */
17834
+ Confidence?: number;
17835
+ /**
17836
+ * 异常片段起始的偏移时间,单位:秒。
17837
+ */
17838
+ StartTimeOffset?: number;
17839
+ /**
17840
+ * 异常片段终止的偏移时间,单位:秒。
17841
+ */
17842
+ EndTimeOffset?: number;
17843
+ /**
17844
+ * 检测出异常的区域坐标。数组包含 4 个元素 [x1,y1,x2,y2],依次表示区域左上点、右下点的横纵坐标。
17845
+ <font color=red>注意:</font> 仅当 Type 取值为下列之一时,本字段取值有效:
17846
+ <li>BlackWhiteEdge:黑白边;</li>
17847
+ <li>Mosaic:马赛克;</li>
17848
+ <li>QRCode:二维码;</li>
17849
+ <li>AppletCode:小程序码;</li>
17850
+ <li>BarCode:条形码。</li>
17851
+ */
17852
+ AreaCoordSet?: Array<number>;
17853
+ }
17166
17854
  /**
17167
17855
  * DescribeImageProcessingTemplates返回参数结构体
17168
17856
  */
@@ -17731,6 +18419,44 @@ export interface DescribeFileAttributesRequest {
17731
18419
  */
17732
18420
  ExtInfo?: string;
17733
18421
  }
18422
+ /**
18423
+ * 音画质检测异常结果信息。
18424
+ */
18425
+ export interface QualityInspectResultItem {
18426
+ /**
18427
+ * 异常类型,取值范围:
18428
+ <li>Jitter:抖动;</li>
18429
+ <li>Blur:模糊;</li>
18430
+ <li>LowLighting:低光照;</li>
18431
+ <li>HighLighting:过曝;</li>
18432
+ <li>CrashScreen:花屏;</li>
18433
+ <li>BlackWhiteEdge:黑白边;</li>
18434
+ <li>SolidColorScreen:纯色屏;</li>
18435
+ <li>Noise:噪点;</li>
18436
+ <li>Mosaic:马赛克;</li>
18437
+ <li>QRCode:二维码;</li>
18438
+ <li>AppletCode:小程序码;</li>
18439
+ <li>BarCode:条形码;</li>
18440
+ <li>LowVoice:低音;</li>
18441
+ <li>HighVoice:爆音;</li>
18442
+ <li>NoVoice:静音;</li>
18443
+ <li>LowEvaluation:无参考打分低于阈值。</li>
18444
+ */
18445
+ Type?: string;
18446
+ /**
18447
+ * 异常片段列表。
18448
+ <font color=red>注意:</font> 该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
18449
+ */
18450
+ SegmentSet?: Array<QualityInspectItem>;
18451
+ /**
18452
+ * 异常片段列表文件 URL。文件 内容 为 JSON,数据结构与 SegmentSet 字段一致。(文件不会永久存储,到达SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
18453
+ */
18454
+ SegmentSetFileUrl?: string;
18455
+ /**
18456
+ * 异常片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
18457
+ */
18458
+ SegmentSetFileUrlExpireTime?: string;
18459
+ }
17734
18460
  /**
17735
18461
  * 视频处理输出文件信息参数。
17736
18462
  */
@@ -17817,6 +18543,19 @@ export interface DeleteWatermarkTemplateResponse {
17817
18543
  */
17818
18544
  RequestId?: string;
17819
18545
  }
18546
+ /**
18547
+ * DeleteQualityInspectTemplate请求参数结构体
18548
+ */
18549
+ export interface DeleteQualityInspectTemplateRequest {
18550
+ /**
18551
+ * 音画质检测模板号。
18552
+ */
18553
+ Definition: number;
18554
+ /**
18555
+ * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
18556
+ */
18557
+ SubAppId?: number;
18558
+ }
17820
18559
  /**
17821
18560
  * 输出的媒体文件信息。
17822
18561
  */