tencentcloud-sdk-nodejs-vod 4.0.626 → 4.0.629

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.
@@ -188,6 +188,22 @@ export interface DescribeFileAttributesTask {
188
188
  SessionContext: string
189
189
  }
190
190
 
191
+ /**
192
+ * 视频画面质量评价的控制参数。
193
+ */
194
+ export interface QualityEvaluationConfigureInfo {
195
+ /**
196
+ * 视频画面质量评价检测开关,可选值:
197
+ <li>ON:开启;</li>
198
+ <li>OFF:关闭。</li>
199
+ */
200
+ Switch: string
201
+ /**
202
+ * 视频画面质量评价过滤阈值,结果只返回低于该值的时间段,默认值为 60。
203
+ */
204
+ Score?: number
205
+ }
206
+
191
207
  /**
192
208
  * 音视频审核任务的输入。
193
209
  */
@@ -838,6 +854,32 @@ export interface AiAnalysisTaskCoverOutput {
838
854
  CoverSetFileUrlExpireTime: string
839
855
  }
840
856
 
857
+ /**
858
+ * 音画质检测任务的输出。
859
+ */
860
+ export interface QualityInspectTaskOutput {
861
+ /**
862
+ * 媒体文件是否无音频轨,取值范围:
863
+ <li>0:否,即有音频轨;</li>
864
+ <li>1:是,即无音频轨。</li>
865
+ */
866
+ NoAudio?: number
867
+ /**
868
+ * 媒体文件是否无视频轨,取值范围:
869
+ <li>0:否,即有视频轨;</li>
870
+ <li>1:是,即无视频轨。</li>
871
+ */
872
+ NoVideo?: number
873
+ /**
874
+ * 视频画面质量评分,取值范围:[0, 100]。
875
+ */
876
+ QualityEvaluationScore?: number
877
+ /**
878
+ * 音画质检测出的异常项列表。
879
+ */
880
+ QualityInspectResultSet?: Array<QualityInspectResultItem>
881
+ }
882
+
841
883
  /**
842
884
  * 用户自定义文本音视频审核任务控制参数。
843
885
  */
@@ -863,6 +905,16 @@ export interface UserDefineOcrTextReviewTemplateInfoForUpdate {
863
905
  ReviewConfidence?: number
864
906
  }
865
907
 
908
+ /**
909
+ * ResetProcedureTemplate返回参数结构体
910
+ */
911
+ export interface ResetProcedureTemplateResponse {
912
+ /**
913
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
914
+ */
915
+ RequestId?: string
916
+ }
917
+
866
918
  /**
867
919
  * 点播文件指定时间点截图信息
868
920
  */
@@ -1431,6 +1483,18 @@ export interface DeleteContentReviewTemplateRequest {
1431
1483
  SubAppId?: number
1432
1484
  }
1433
1485
 
1486
+ /**
1487
+ * 视频画面噪点检测的控制参数。
1488
+ */
1489
+ export interface NoiseConfigureInfo {
1490
+ /**
1491
+ * 视频画面噪点检测开关,可选值:
1492
+ <li>ON:开启;</li>
1493
+ <li>OFF:关闭。</li>
1494
+ */
1495
+ Switch: string
1496
+ }
1497
+
1434
1498
  /**
1435
1499
  * 音视频审核涉及令人不适宜信息的任务输入参数类型
1436
1500
  */
@@ -1853,6 +1917,22 @@ export interface AiRecognitionTaskAsrWordsSegmentItem {
1853
1917
  Confidence: number
1854
1918
  }
1855
1919
 
1920
+ /**
1921
+ * 视频画面质量评价的控制参数。
1922
+ */
1923
+ export interface QualityEvaluationConfigureInfoForUpdate {
1924
+ /**
1925
+ * 视频画面质量评价开关,可选值:
1926
+ <li>ON:开启;</li>
1927
+ <li>OFF:关闭。</li>
1928
+ */
1929
+ Switch?: string
1930
+ /**
1931
+ * 视频画面质量评价过滤阈值,结果只返回低于该值的时间段。
1932
+ */
1933
+ Score?: number
1934
+ }
1935
+
1856
1936
  /**
1857
1937
  * 视频内容识别输入参数类型
1858
1938
  */
@@ -2491,6 +2571,18 @@ export interface DescribeDailyPlayStatFileListResponse {
2491
2571
  RequestId?: string
2492
2572
  }
2493
2573
 
2574
+ /**
2575
+ * 视频画面低光、过曝检测的控制参数。
2576
+ */
2577
+ export interface AbnormalLightingConfigureInfo {
2578
+ /**
2579
+ * 视频画面低光、过曝检测开关,可选值:
2580
+ <li>ON:开启;</li>
2581
+ <li>OFF:关闭。</li>
2582
+ */
2583
+ Switch: string
2584
+ }
2585
+
2494
2586
  /**
2495
2587
  * 文字水印模板
2496
2588
  */
@@ -2571,6 +2663,18 @@ export interface AiReviewPornTaskInput {
2571
2663
  Definition: number
2572
2664
  }
2573
2665
 
2666
+ /**
2667
+ * 视频画面抖动重影检测的控制参数。
2668
+ */
2669
+ export interface JitterConfigureInfoForUpdate {
2670
+ /**
2671
+ * 视频画面抖动重影检测开关,可选值:
2672
+ <li>ON:开启;</li>
2673
+ <li>OFF:关闭。</li>
2674
+ */
2675
+ Switch?: string
2676
+ }
2677
+
2574
2678
  /**
2575
2679
  * 用户自定义语音审核任务控制参数
2576
2680
  */
@@ -2894,22 +2998,21 @@ export interface ModifySuperPlayerConfigResponse {
2894
2998
  }
2895
2999
 
2896
3000
  /**
2897
- * 文本关键词识别输出。
3001
+ * DescribeWordSamples返回参数结构体
2898
3002
  */
2899
- export interface AiRecognitionTaskOcrWordsResultOutput {
3003
+ export interface DescribeWordSamplesResponse {
2900
3004
  /**
2901
- * 文本关键词识别结果集。
2902
- <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 ResultSetFileUrl 对应的文件中获取。
3005
+ * 符合条件的记录总数。
2903
3006
  */
2904
- ResultSet: Array<AiRecognitionTaskOcrWordsResultItem>
3007
+ TotalCount: number
2905
3008
  /**
2906
- * 文本关键词识别结果集文件 URL。文件的内容为 JSON,数据结构与 ResultSet 字段一致。 (文件不会永久存储,到达ResultSetFileUrlExpireTime 时间点后文件将被删除)。
3009
+ * 关键词信息。
2907
3010
  */
2908
- ResultSetFileUrl: string
3011
+ WordSet: Array<AiSampleWord>
2909
3012
  /**
2910
- * 文本关键词识别结果集文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)
3013
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId
2911
3014
  */
2912
- ResultSetFileUrlExpireTime: string
3015
+ RequestId?: string
2913
3016
  }
2914
3017
 
2915
3018
  /**
@@ -3242,21 +3345,22 @@ export interface CreateRebuildMediaTemplateResponse {
3242
3345
  }
3243
3346
 
3244
3347
  /**
3245
- * DescribeWordSamples返回参数结构体
3348
+ * 文本关键词识别输出。
3246
3349
  */
3247
- export interface DescribeWordSamplesResponse {
3350
+ export interface AiRecognitionTaskOcrWordsResultOutput {
3248
3351
  /**
3249
- * 符合条件的记录总数。
3352
+ * 文本关键词识别结果集。
3353
+ <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 ResultSetFileUrl 对应的文件中获取。
3250
3354
  */
3251
- TotalCount: number
3355
+ ResultSet: Array<AiRecognitionTaskOcrWordsResultItem>
3252
3356
  /**
3253
- * 关键词信息。
3357
+ * 文本关键词识别结果集文件 URL。文件的内容为 JSON,数据结构与 ResultSet 字段一致。 (文件不会永久存储,到达ResultSetFileUrlExpireTime 时间点后文件将被删除)。
3254
3358
  */
3255
- WordSet: Array<AiSampleWord>
3359
+ ResultSetFileUrl: string
3256
3360
  /**
3257
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId
3361
+ * 文本关键词识别结果集文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)
3258
3362
  */
3259
- RequestId?: string
3363
+ ResultSetFileUrlExpireTime: string
3260
3364
  }
3261
3365
 
3262
3366
  /**
@@ -3303,6 +3407,53 @@ export interface MediaImageSpriteItem {
3303
3407
  WebVttUrl: string
3304
3408
  }
3305
3409
 
3410
+ /**
3411
+ * 音画质检测任务信息。
3412
+ */
3413
+ export interface QualityInspectTask {
3414
+ /**
3415
+ * 任务 ID。
3416
+ */
3417
+ TaskId?: string
3418
+ /**
3419
+ * 任务状态,取值:
3420
+ <li>PROCESSING:处理中;</li>
3421
+ <li>FINISH:已完成。</li>
3422
+ */
3423
+ Status?: string
3424
+ /**
3425
+ * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](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) 列表。
3426
+ */
3427
+ ErrCodeExt?: string
3428
+ /**
3429
+ * 错误信息。
3430
+ */
3431
+ Message?: string
3432
+ /**
3433
+ * 音画质检测输入音视频的元信息。
3434
+ 注意:此字段可能返回 null,表示取不到有效值。
3435
+ */
3436
+ MetaData?: MediaMetaData
3437
+ /**
3438
+ * 音画质检测任务输入。
3439
+ 注意:此字段可能返回 null,表示取不到有效值。
3440
+ */
3441
+ Input?: QualityInspectTaskInput
3442
+ /**
3443
+ * 音画质检测任务输出。
3444
+ 注意:此字段可能返回 null,表示取不到有效值。
3445
+ */
3446
+ Output?: QualityInspectTaskOutput
3447
+ /**
3448
+ * 用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
3449
+ */
3450
+ SessionId?: string
3451
+ /**
3452
+ * 来源上下文,用于透传用户请求信息,音画质检测完成回调将返回该字段值,最长 1000 个字符。
3453
+ */
3454
+ SessionContext?: string
3455
+ }
3456
+
3306
3457
  /**
3307
3458
  * DescribeEnhanceMediaTemplates返回参数结构体
3308
3459
  */
@@ -3542,6 +3693,16 @@ export interface CoverBySnapshotTaskOutput {
3542
3693
  CoverUrl: string
3543
3694
  }
3544
3695
 
3696
+ /**
3697
+ * ModifyQualityInspectTemplate返回参数结构体
3698
+ */
3699
+ export interface ModifyQualityInspectTemplateResponse {
3700
+ /**
3701
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3702
+ */
3703
+ RequestId?: string
3704
+ }
3705
+
3545
3706
  /**
3546
3707
  * 文字水印模板
3547
3708
  */
@@ -4520,6 +4681,18 @@ export interface CreateWordSamplesRequest {
4520
4681
  SubAppId?: number
4521
4682
  }
4522
4683
 
4684
+ /**
4685
+ * 视频画面模糊检测的控制参数。
4686
+ */
4687
+ export interface BlurConfigureInfo {
4688
+ /**
4689
+ * 视频画面模糊检测开关,可选值:
4690
+ <li>ON:开启;</li>
4691
+ <li>OFF:关闭。</li>
4692
+ */
4693
+ Switch: string
4694
+ }
4695
+
4523
4696
  /**
4524
4697
  * 语音鉴别涉及令人不适宜的信息的任务控制参数。
4525
4698
  */
@@ -4752,6 +4925,18 @@ export interface AiRecognitionTaskSegmentResult {
4752
4925
  FinishTime?: string
4753
4926
  }
4754
4927
 
4928
+ /**
4929
+ * 视频画面抖动重影检测的控制参数。
4930
+ */
4931
+ export interface JitterConfigureInfo {
4932
+ /**
4933
+ * 视频画面抖动重影检测开关,可选值:
4934
+ <li>ON:开启;</li>
4935
+ <li>OFF:关闭。</li>
4936
+ */
4937
+ Switch: string
4938
+ }
4939
+
4755
4940
  /**
4756
4941
  * 字幕信息。
4757
4942
  */
@@ -5407,6 +5592,18 @@ export interface ReduceMediaBitrateTask {
5407
5592
  SessionId: string
5408
5593
  }
5409
5594
 
5595
+ /**
5596
+ * 视频画面花屏检测的控制参数。
5597
+ */
5598
+ export interface CrashScreenConfigureInfo {
5599
+ /**
5600
+ * 视频画面花屏检测开关,可选值:
5601
+ <li>ON:开启;</li>
5602
+ <li>OFF:关闭。</li>
5603
+ */
5604
+ Switch: string
5605
+ }
5606
+
5410
5607
  /**
5411
5608
  * CreateReviewTemplate请求参数结构体
5412
5609
  */
@@ -6472,6 +6669,18 @@ export interface UserDefineConfigureInfo {
6472
6669
  OcrReviewInfo?: UserDefineOcrTextReviewTemplateInfo
6473
6670
  }
6474
6671
 
6672
+ /**
6673
+ * 视频画面噪点检测的控制参数。
6674
+ */
6675
+ export interface NoiseConfigureInfoForUpdate {
6676
+ /**
6677
+ * 视频画面噪点检测开关,可选值:
6678
+ <li>ON:开启;</li>
6679
+ <li>OFF:关闭。</li>
6680
+ */
6681
+ Switch?: string
6682
+ }
6683
+
6475
6684
  /**
6476
6685
  * 视频拆条片段。
6477
6686
  */
@@ -7079,6 +7288,18 @@ export interface AiAnalysisTaskTagOutput {
7079
7288
  TagSetFileUrlExpireTime: string
7080
7289
  }
7081
7290
 
7291
+ /**
7292
+ * 视频画面马赛克检测的控制参数。
7293
+ */
7294
+ export interface MosaicConfigureInfo {
7295
+ /**
7296
+ * 视频画面马赛克检测开关,可选值:
7297
+ <li>ON:开启;</li>
7298
+ <li>OFF:关闭。</li>
7299
+ */
7300
+ Switch: string
7301
+ }
7302
+
7082
7303
  /**
7083
7304
  * 智能精彩片段结果信息
7084
7305
  */
@@ -7731,50 +7952,15 @@ export interface MediaProcessTaskTranscodeResult {
7731
7952
  }
7732
7953
 
7733
7954
  /**
7734
- * 域名信息
7955
+ * 视频画面模糊检测的控制参数。
7735
7956
  */
7736
- export interface DomainDetailInfo {
7737
- /**
7738
- * 域名名称。
7739
- */
7740
- Domain: string
7741
- /**
7742
- * 加速地区信息。
7743
- 注意:此字段可能返回 null,表示取不到有效值。
7744
- */
7745
- AccelerateAreaInfos: Array<AccelerateAreaInfo>
7746
- /**
7747
- * 部署状态,取值有:
7748
- <li>Online:上线;</li>
7749
- <li>Deploying:部署中;</li>
7750
- <li>Locked: 锁定中,出现该状态时,无法对该域名进行部署变更。</li>
7751
- */
7752
- DeployStatus: string
7753
- /**
7754
- * HTTPS 配置信息。
7755
- 注意:此字段可能返回 null,表示取不到有效值。
7756
- */
7757
- HTTPSConfig: DomainHTTPSConfig
7758
- /**
7759
- * [Key 防盗链](https://cloud.tencent.com/document/product/266/14047)配置信息。
7760
- 注意:此字段可能返回 null,表示取不到有效值。
7761
- */
7762
- UrlSignatureAuthPolicy: UrlSignatureAuthPolicy
7763
- /**
7764
- * [Referer 防盗链](https://cloud.tencent.com/document/product/266/14046)配置信息。
7765
- 注意:此字段可能返回 null,表示取不到有效值。
7766
- */
7767
- RefererAuthPolicy: RefererAuthPolicy
7768
- /**
7769
- * 域名添加到腾讯云点播系统中的时间。
7770
- <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>
7771
- */
7772
- CreateTime: string
7957
+ export interface BlurConfigureInfoForUpdate {
7773
7958
  /**
7774
- * 域名 QUIC 配置信息。
7775
- 注意:此字段可能返回 null,表示取不到有效值。
7959
+ * 视频画面模糊检测开关,可选值:
7960
+ <li>ON:开启;</li>
7961
+ <li>OFF:关闭。</li>
7776
7962
  */
7777
- QUICConfig?: DomainQUICConfig
7963
+ Switch?: string
7778
7964
  }
7779
7965
 
7780
7966
  /**
@@ -8753,6 +8939,32 @@ export interface CreateWatermarkTemplateRequest {
8753
8939
  SvgTemplate?: SvgWatermarkInput
8754
8940
  }
8755
8941
 
8942
+ /**
8943
+ * 视频画面黑边、白边、黑屏、白屏检测的控制参数。
8944
+ */
8945
+ export interface BlackWhiteEdgeConfigureInfo {
8946
+ /**
8947
+ * 视频画面黑边、白边、黑屏、白屏检测开关,可选值:
8948
+ <li>ON:开启;</li>
8949
+ <li>OFF:关闭。</li>
8950
+ */
8951
+ Switch: string
8952
+ }
8953
+
8954
+ /**
8955
+ * 排序依据
8956
+ */
8957
+ export interface SortBy {
8958
+ /**
8959
+ * 排序字段
8960
+ */
8961
+ Field: string
8962
+ /**
8963
+ * 排序方式,可选值:Asc(升序)、Desc(降序)
8964
+ */
8965
+ Order: string
8966
+ }
8967
+
8756
8968
  /**
8757
8969
  * 鉴别涉及令人不安全的信息的任务控制参数。
8758
8970
  */
@@ -8949,6 +9161,17 @@ export interface ImageScale {
8949
9161
  ShortEdge?: number
8950
9162
  }
8951
9163
 
9164
+ /**
9165
+ * 图片智能内容识别任务输入
9166
+ */
9167
+ export interface ImageContentReviewInput {
9168
+ /**
9169
+ * 图片智能内容审核模板 ID。当前只支持:
9170
+ <li>10:所有审核类型均打开。</li>
9171
+ */
9172
+ Definition: number
9173
+ }
9174
+
8952
9175
  /**
8953
9176
  * 视频转码播放信息(2017 版)
8954
9177
  */
@@ -9039,11 +9262,77 @@ export interface ComposeMediaTaskInput {
9039
9262
  }
9040
9263
 
9041
9264
  /**
9042
- * 转动图任务类型
9265
+ * ModifyQualityInspectTemplate请求参数结构体
9043
9266
  */
9044
- export interface AnimatedGraphicTaskInput {
9267
+ export interface ModifyQualityInspectTemplateRequest {
9045
9268
  /**
9046
- * 视频转动图模板 ID
9269
+ * 模板 ID
9270
+ */
9271
+ Definition: number
9272
+ /**
9273
+ * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
9274
+ */
9275
+ SubAppId?: number
9276
+ /**
9277
+ * 模板名称,长度限制:64 个字符。
9278
+ */
9279
+ Name?: string
9280
+ /**
9281
+ * 模板描述信息,长度限制:256 个字符。
9282
+ */
9283
+ Comment?: string
9284
+ /**
9285
+ * 截帧间隔,单位为秒,最小值为 1。
9286
+ */
9287
+ ScreenshotInterval?: number
9288
+ /**
9289
+ * 视频画面抖动重影检测的控制参数。
9290
+ */
9291
+ JitterConfigure?: JitterConfigureInfoForUpdate
9292
+ /**
9293
+ * 视频画面模糊检测的控制参数。
9294
+ */
9295
+ BlurConfigure?: BlurConfigureInfoForUpdate
9296
+ /**
9297
+ * 视频画面低光、过曝检测的控制参数。
9298
+ */
9299
+ AbnormalLightingConfigure?: AbnormalLightingConfigureInfoForUpdate
9300
+ /**
9301
+ * 视频画面花屏检测的控制参数。
9302
+ */
9303
+ CrashScreenConfigure?: CrashScreenConfigureInfoForUpdate
9304
+ /**
9305
+ * 视频画面黑边、白边、黑屏、白屏检测的控制参数。
9306
+ */
9307
+ BlackWhiteEdgeConfigure?: BlackWhiteEdgeConfigureInfoForUpdate
9308
+ /**
9309
+ * 视频画面噪点检测的控制参数。
9310
+ */
9311
+ NoiseConfigure?: NoiseConfigureInfoForUpdate
9312
+ /**
9313
+ * 视频画面马赛克检测的控制参数。
9314
+ */
9315
+ MosaicConfigure?: MosaicConfigureInfoForUpdate
9316
+ /**
9317
+ * 视频画面二维码检测的控制参数。
9318
+ */
9319
+ QRCodeConfigure?: QRCodeConfigureInfoForUpdate
9320
+ /**
9321
+ * 视频画面质量评价的控制参数。
9322
+ */
9323
+ QualityEvaluationConfigure?: QualityEvaluationConfigureInfoForUpdate
9324
+ /**
9325
+ * 音频(静音、低音、爆音)检测的控制参数。
9326
+ */
9327
+ VoiceConfigure?: VoiceConfigureInfoForUpdate
9328
+ }
9329
+
9330
+ /**
9331
+ * 转动图任务类型
9332
+ */
9333
+ export interface AnimatedGraphicTaskInput {
9334
+ /**
9335
+ * 视频转动图模板 ID
9047
9336
  */
9048
9337
  Definition: number
9049
9338
  /**
@@ -9641,13 +9930,17 @@ export interface DescribeImageProcessingTemplatesRequest {
9641
9930
  }
9642
9931
 
9643
9932
  /**
9644
- * ResetProcedureTemplate返回参数结构体
9933
+ * 音画质检测任务的输入。
9645
9934
  */
9646
- export interface ResetProcedureTemplateResponse {
9935
+ export interface QualityInspectTaskInput {
9647
9936
  /**
9648
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId
9937
+ * 媒体文件 ID。
9649
9938
  */
9650
- RequestId?: string
9939
+ FileId?: string
9940
+ /**
9941
+ * 音画质检测模板 ID。
9942
+ */
9943
+ Definition?: number
9651
9944
  }
9652
9945
 
9653
9946
  /**
@@ -10219,6 +10512,53 @@ export interface ProcedureTemplate {
10219
10512
  UpdateTime?: string
10220
10513
  }
10221
10514
 
10515
+ /**
10516
+ * 域名信息
10517
+ */
10518
+ export interface DomainDetailInfo {
10519
+ /**
10520
+ * 域名名称。
10521
+ */
10522
+ Domain: string
10523
+ /**
10524
+ * 加速地区信息。
10525
+ 注意:此字段可能返回 null,表示取不到有效值。
10526
+ */
10527
+ AccelerateAreaInfos: Array<AccelerateAreaInfo>
10528
+ /**
10529
+ * 部署状态,取值有:
10530
+ <li>Online:上线;</li>
10531
+ <li>Deploying:部署中;</li>
10532
+ <li>Locked: 锁定中,出现该状态时,无法对该域名进行部署变更。</li>
10533
+ */
10534
+ DeployStatus: string
10535
+ /**
10536
+ * HTTPS 配置信息。
10537
+ 注意:此字段可能返回 null,表示取不到有效值。
10538
+ */
10539
+ HTTPSConfig: DomainHTTPSConfig
10540
+ /**
10541
+ * [Key 防盗链](https://cloud.tencent.com/document/product/266/14047)配置信息。
10542
+ 注意:此字段可能返回 null,表示取不到有效值。
10543
+ */
10544
+ UrlSignatureAuthPolicy: UrlSignatureAuthPolicy
10545
+ /**
10546
+ * [Referer 防盗链](https://cloud.tencent.com/document/product/266/14046)配置信息。
10547
+ 注意:此字段可能返回 null,表示取不到有效值。
10548
+ */
10549
+ RefererAuthPolicy: RefererAuthPolicy
10550
+ /**
10551
+ * 域名添加到腾讯云点播系统中的时间。
10552
+ <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>
10553
+ */
10554
+ CreateTime: string
10555
+ /**
10556
+ * 域名 QUIC 配置信息。
10557
+ 注意:此字段可能返回 null,表示取不到有效值。
10558
+ */
10559
+ QUICConfig?: DomainQUICConfig
10560
+ }
10561
+
10222
10562
  /**
10223
10563
  * 音视频审核涉及令人不安全的信息的任务结果类型
10224
10564
  */
@@ -10463,6 +10803,18 @@ export interface CreateSnapshotByTimeOffsetTemplateResponse {
10463
10803
  RequestId?: string
10464
10804
  }
10465
10805
 
10806
+ /**
10807
+ * 音频(静音、低音、爆音)检测的控制参数。
10808
+ */
10809
+ export interface VoiceConfigureInfoForUpdate {
10810
+ /**
10811
+ * 音频(静音、低音、爆音)检测开关,可选值:
10812
+ <li>ON:开启;</li>
10813
+ <li>OFF:关闭。</li>
10814
+ */
10815
+ Switch?: string
10816
+ }
10817
+
10466
10818
  /**
10467
10819
  * ModifyContentReviewTemplate请求参数结构体
10468
10820
  */
@@ -10517,78 +10869,6 @@ export interface ModifyContentReviewTemplateRequest {
10517
10869
  ReviewWallSwitch?: string
10518
10870
  }
10519
10871
 
10520
- /**
10521
- * DeleteReviewTemplate请求参数结构体
10522
- */
10523
- export interface DeleteReviewTemplateRequest {
10524
- /**
10525
- * 审核模板唯一标识。
10526
- */
10527
- Definition: number
10528
- /**
10529
- * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
10530
- */
10531
- SubAppId?: number
10532
- }
10533
-
10534
- /**
10535
- * AttachMediaSubtitles返回参数结构体
10536
- */
10537
- export interface AttachMediaSubtitlesResponse {
10538
- /**
10539
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10540
- */
10541
- RequestId?: string
10542
- }
10543
-
10544
- /**
10545
- * 音视频审核任务类型
10546
- */
10547
- export interface AiContentReviewTaskInput {
10548
- /**
10549
- * 音视频审核模板 ID。
10550
- */
10551
- Definition: number
10552
- }
10553
-
10554
- /**
10555
- * CreateAdaptiveDynamicStreamingTemplate返回参数结构体
10556
- */
10557
- export interface CreateAdaptiveDynamicStreamingTemplateResponse {
10558
- /**
10559
- * 自适应转码模板唯一标识。
10560
- */
10561
- Definition: number
10562
- /**
10563
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10564
- */
10565
- RequestId?: string
10566
- }
10567
-
10568
- /**
10569
- * DeleteSampleSnapshotTemplate请求参数结构体
10570
- */
10571
- export interface DeleteSampleSnapshotTemplateRequest {
10572
- /**
10573
- * 采样截图模板唯一标识。
10574
- */
10575
- Definition: number
10576
- /**
10577
- * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
10578
- */
10579
- SubAppId?: number
10580
- }
10581
-
10582
- /**
10583
- * AI 视频智能分析输入参数类型
10584
- */
10585
- export interface AiAnalysisTaskInput {
10586
- /**
10587
- * 视频内容分析模板 ID。
10588
- */
10589
- Definition: number
10590
- }
10591
-
10592
10872
  /**
10593
10873
  * 雪碧图模板详情
10594
10874
  */
@@ -10673,6 +10953,99 @@ export interface ImageSpriteTemplate {
10673
10953
  Format: string
10674
10954
  }
10675
10955
 
10956
+ /**
10957
+ * DeleteReviewTemplate请求参数结构体
10958
+ */
10959
+ export interface DeleteReviewTemplateRequest {
10960
+ /**
10961
+ * 审核模板唯一标识。
10962
+ */
10963
+ Definition: number
10964
+ /**
10965
+ * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
10966
+ */
10967
+ SubAppId?: number
10968
+ }
10969
+
10970
+ /**
10971
+ * AttachMediaSubtitles返回参数结构体
10972
+ */
10973
+ export interface AttachMediaSubtitlesResponse {
10974
+ /**
10975
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10976
+ */
10977
+ RequestId?: string
10978
+ }
10979
+
10980
+ /**
10981
+ * 音视频审核任务类型
10982
+ */
10983
+ export interface AiContentReviewTaskInput {
10984
+ /**
10985
+ * 音视频审核模板 ID。
10986
+ */
10987
+ Definition: number
10988
+ }
10989
+
10990
+ /**
10991
+ * CreateAdaptiveDynamicStreamingTemplate返回参数结构体
10992
+ */
10993
+ export interface CreateAdaptiveDynamicStreamingTemplateResponse {
10994
+ /**
10995
+ * 自适应转码模板唯一标识。
10996
+ */
10997
+ Definition: number
10998
+ /**
10999
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
11000
+ */
11001
+ RequestId?: string
11002
+ }
11003
+
11004
+ /**
11005
+ * DeleteSampleSnapshotTemplate请求参数结构体
11006
+ */
11007
+ export interface DeleteSampleSnapshotTemplateRequest {
11008
+ /**
11009
+ * 采样截图模板唯一标识。
11010
+ */
11011
+ Definition: number
11012
+ /**
11013
+ * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
11014
+ */
11015
+ SubAppId?: number
11016
+ }
11017
+
11018
+ /**
11019
+ * DescribeTranscodeTemplates返回参数结构体
11020
+ */
11021
+ export interface DescribeTranscodeTemplatesResponse {
11022
+ /**
11023
+ * 符合过滤条件的记录总数。
11024
+ */
11025
+ TotalCount: number
11026
+ /**
11027
+ * 转码模板详情列表。
11028
+ 注意:此字段可能返回 null,表示取不到有效值。
11029
+ */
11030
+ TranscodeTemplateSet: Array<TranscodeTemplate>
11031
+ /**
11032
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
11033
+ */
11034
+ RequestId?: string
11035
+ }
11036
+
11037
+ /**
11038
+ * 视频画面低光、过曝检测的控制参数。
11039
+ */
11040
+ export interface AbnormalLightingConfigureInfoForUpdate {
11041
+ /**
11042
+ * 视频画面低光、过曝检测开关,可选值:
11043
+ <li>ON:开启;</li>
11044
+ <li>OFF:关闭。</li>
11045
+ */
11046
+ Switch?: string
11047
+ }
11048
+
10676
11049
  /**
10677
11050
  * 文本全文识别片段。
10678
11051
  */
@@ -11136,17 +11509,65 @@ export interface PullUploadRequest {
11136
11509
  }
11137
11510
 
11138
11511
  /**
11139
- * 排序依据
11512
+ * CreateQualityInspectTemplate请求参数结构体
11140
11513
  */
11141
- export interface SortBy {
11514
+ export interface CreateQualityInspectTemplateRequest {
11142
11515
  /**
11143
- * 排序字段
11516
+ * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
11144
11517
  */
11145
- Field: string
11518
+ SubAppId?: number
11146
11519
  /**
11147
- * 排序方式,可选值:Asc(升序)、Desc(降序)
11520
+ * 音画质检测模板名称。
11148
11521
  */
11149
- Order: string
11522
+ Name?: string
11523
+ /**
11524
+ * 音画质检测模板描述。
11525
+ */
11526
+ Comment?: string
11527
+ /**
11528
+ * 截帧间隔,单位为秒,最小值为 1。当不填时,默认截帧间隔为 1 秒。
11529
+ */
11530
+ ScreenshotInterval?: number
11531
+ /**
11532
+ * 视频画面抖动重影检测的控制参数。
11533
+ */
11534
+ JitterConfigure?: JitterConfigureInfo
11535
+ /**
11536
+ * 视频画面模糊检测的控制参数。
11537
+ */
11538
+ BlurConfigure?: BlurConfigureInfo
11539
+ /**
11540
+ * 视频画面低光、过曝检测的控制参数。
11541
+ */
11542
+ AbnormalLightingConfigure?: AbnormalLightingConfigureInfo
11543
+ /**
11544
+ * 视频画面花屏检测的控制参数。
11545
+ */
11546
+ CrashScreenConfigure?: CrashScreenConfigureInfo
11547
+ /**
11548
+ * 视频画面黑边、白边、黑屏、白屏检测的控制参数。
11549
+ */
11550
+ BlackWhiteEdgeConfigure?: BlackWhiteEdgeConfigureInfo
11551
+ /**
11552
+ * 视频画面噪点检测的控制参数。
11553
+ */
11554
+ NoiseConfigure?: NoiseConfigureInfo
11555
+ /**
11556
+ * 视频画面马赛克检测的控制参数。
11557
+ */
11558
+ MosaicConfigure?: MosaicConfigureInfo
11559
+ /**
11560
+ * 视频画面二维码检测的控制参数。
11561
+ */
11562
+ QRCodeConfigure?: QRCodeConfigureInfo
11563
+ /**
11564
+ * 视频画面质量评价的控制参数。
11565
+ */
11566
+ QualityEvaluationConfigure?: QualityEvaluationConfigureInfo
11567
+ /**
11568
+ * 音频(静音、低音、爆音)检测的控制参数。
11569
+ */
11570
+ VoiceConfigure?: VoiceConfigureInfo
11150
11571
  }
11151
11572
 
11152
11573
  /**
@@ -11251,6 +11672,18 @@ export interface RebuildMediaTargetVideoStream {
11251
11672
  Gop?: number
11252
11673
  }
11253
11674
 
11675
+ /**
11676
+ * 音频(静音、低音、爆音)检测的控制参数。
11677
+ */
11678
+ export interface VoiceConfigureInfo {
11679
+ /**
11680
+ * 音频(静音、低音、爆音)检测开关,可选值:
11681
+ <li>ON:开启;</li>
11682
+ <li>OFF:关闭。</li>
11683
+ */
11684
+ Switch: string
11685
+ }
11686
+
11254
11687
  /**
11255
11688
  * 视频剪辑任务信息,该结构仅用于对 2017 版[视频剪辑](https://cloud.tencent.com/document/product/266/10156)接口发起的任务。
11256
11689
  */
@@ -11743,9 +12176,21 @@ export interface CreateClassResponse {
11743
12176
  */
11744
12177
  export interface DeleteSuperPlayerConfigResponse {
11745
12178
  /**
11746
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
12179
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
12180
+ */
12181
+ RequestId?: string
12182
+ }
12183
+
12184
+ /**
12185
+ * 视频画面花屏检测的控制参数。
12186
+ */
12187
+ export interface CrashScreenConfigureInfoForUpdate {
12188
+ /**
12189
+ * 视频画面花屏检测开关,可选值:
12190
+ <li>ON:开启;</li>
12191
+ <li>OFF:关闭。</li>
11747
12192
  */
11748
- RequestId?: string
12193
+ Switch?: string
11749
12194
  }
11750
12195
 
11751
12196
  /**
@@ -12064,6 +12509,18 @@ export interface ModifyAIRecognitionTemplateRequest {
12064
12509
  ScreenshotInterval?: number
12065
12510
  }
12066
12511
 
12512
+ /**
12513
+ * 视频画面二维码检测的控制参数。
12514
+ */
12515
+ export interface QRCodeConfigureInfo {
12516
+ /**
12517
+ * 视频画面二维码检测开关,可选值:
12518
+ <li>ON:开启;</li>
12519
+ <li>OFF:关闭。</li>
12520
+ */
12521
+ Switch: string
12522
+ }
12523
+
12067
12524
  /**
12068
12525
  * DescribeStorageRegions请求参数结构体
12069
12526
  */
@@ -12441,6 +12898,7 @@ export interface EventContent {
12441
12898
  <li>ExtractTraceWatermarkComplete:提取溯源水印完成;</li>
12442
12899
  <li>ExtractCopyRightWatermarkComplete:提取版权水印完成;</li>
12443
12900
  <li>DescribeFileAttributesComplete:获取文件属性完成;</li>
12901
+ <li>QualityInspectComplete:音画质检测完成。</li>
12444
12902
  <b>兼容 2017 版的事件类型:</b>
12445
12903
  <li>TranscodeComplete:视频转码完成;</li>
12446
12904
  <li>ConcatComplete:视频拼接完成;</li>
@@ -12559,6 +13017,11 @@ export interface EventContent {
12559
13017
  注意:此字段可能返回 null,表示取不到有效值。
12560
13018
  */
12561
13019
  DescribeFileAttributesCompleteEvent: DescribeFileAttributesTask
13020
+ /**
13021
+ * 音画质检测完成事件,当事件类型为 QualityInspectComplete 时有效。
13022
+ 注意:此字段可能返回 null,表示取不到有效值。
13023
+ */
13024
+ QualityInspectCompleteEvent?: QualityInspectTask
12562
13025
  }
12563
13026
 
12564
13027
  /**
@@ -12682,6 +13145,18 @@ export interface ModifyClassRequest {
12682
13145
  SubAppId?: number
12683
13146
  }
12684
13147
 
13148
+ /**
13149
+ * 视频画面二维码检测的控制参数。
13150
+ */
13151
+ export interface QRCodeConfigureInfoForUpdate {
13152
+ /**
13153
+ * 视频画面二维码检测开关,可选值:
13154
+ <li>ON:开启;</li>
13155
+ <li>OFF:关闭。</li>
13156
+ */
13157
+ Switch?: string
13158
+ }
13159
+
12685
13160
  /**
12686
13161
  * 指定规格任务统计数据。
12687
13162
  */
@@ -12741,6 +13216,34 @@ export interface ComposeMediaTaskOutput {
12741
13216
  ExpireTime: string
12742
13217
  }
12743
13218
 
13219
+ /**
13220
+ * DescribeQualityInspectTemplates请求参数结构体
13221
+ */
13222
+ export interface DescribeQualityInspectTemplatesRequest {
13223
+ /**
13224
+ * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
13225
+ */
13226
+ SubAppId?: number
13227
+ /**
13228
+ * 音画质检测模板列表。长度限制:100。
13229
+ */
13230
+ Definitions?: Array<number>
13231
+ /**
13232
+ * 模板类型过滤条件,可选值:
13233
+ <li>Preset:系统预置模板;</li>
13234
+ <li>Custom:用户自定义模板。</li>
13235
+ */
13236
+ Type?: string
13237
+ /**
13238
+ * 分页偏移量,默认值:0。
13239
+ */
13240
+ Offset?: number
13241
+ /**
13242
+ * 返回记录条数,默认值:10,最大值:100。
13243
+ */
13244
+ Limit?: number
13245
+ }
13246
+
12744
13247
  /**
12745
13248
  * DescribeMediaInfos请求参数结构体
12746
13249
  */
@@ -13156,14 +13659,13 @@ export interface AiRecognitionTaskAsrFullTextResult {
13156
13659
  }
13157
13660
 
13158
13661
  /**
13159
- * 图片智能内容识别任务输入
13662
+ * DeleteQualityInspectTemplate返回参数结构体
13160
13663
  */
13161
- export interface ImageContentReviewInput {
13664
+ export interface DeleteQualityInspectTemplateResponse {
13162
13665
  /**
13163
- * 图片智能内容审核模板 ID。当前只支持:
13164
- <li>10:所有审核类型均打开。</li>
13666
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
13165
13667
  */
13166
- Definition: number
13668
+ RequestId?: string
13167
13669
  }
13168
13670
 
13169
13671
  /**
@@ -13585,6 +14087,20 @@ export interface MediaSampleSnapshotInfo {
13585
14087
  SampleSnapshotSet: Array<MediaSampleSnapshotItem>
13586
14088
  }
13587
14089
 
14090
+ /**
14091
+ * InspectMediaQuality返回参数结构体
14092
+ */
14093
+ export interface InspectMediaQualityResponse {
14094
+ /**
14095
+ * 音画质检测任务 ID。
14096
+ */
14097
+ TaskId?: string
14098
+ /**
14099
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
14100
+ */
14101
+ RequestId?: string
14102
+ }
14103
+
13588
14104
  /**
13589
14105
  * DescribeSubAppIds返回参数结构体
13590
14106
  */
@@ -13869,6 +14385,40 @@ export interface DescribeImageSpriteTemplatesResponse {
13869
14385
  RequestId?: string
13870
14386
  }
13871
14387
 
14388
+ /**
14389
+ * InspectMediaQuality请求参数结构体
14390
+ */
14391
+ export interface InspectMediaQualityRequest {
14392
+ /**
14393
+ * 媒体文件 ID,即该文件在云点播上的全局唯一标识符,在上传成功后由云点播后台分配。可以在 [视频上传完成事件通知](/document/product/266/7830) 或 [云点播控制台](https://console.cloud.tencent.com/vod/media) 获取该字段。
14394
+ */
14395
+ FileId: string
14396
+ /**
14397
+ * 音画质检测模板 ID。
14398
+ */
14399
+ Definition: number
14400
+ /**
14401
+ * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
14402
+ */
14403
+ SubAppId?: number
14404
+ /**
14405
+ * 任务的优先级,数值越大优先级越高,取值范围是 -10 到 10,不填代表 0。
14406
+ */
14407
+ TasksPriority?: number
14408
+ /**
14409
+ * 来源上下文,用于透传用户请求信息,音画质检测完成回调将返回该字段值,最长 1000 个字符。
14410
+ */
14411
+ SessionContext?: string
14412
+ /**
14413
+ * 用于去重的识别码,如果三天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
14414
+ */
14415
+ SessionId?: string
14416
+ /**
14417
+ * 保留字段,特殊用途时使用。
14418
+ */
14419
+ ExtInfo?: string
14420
+ }
14421
+
13872
14422
  /**
13873
14423
  * 智能按帧标签任务输入类型
13874
14424
  */
@@ -13911,6 +14461,20 @@ export interface AiRecognitionTaskAsrWordsResultItem {
13911
14461
  SegmentSet: Array<AiRecognitionTaskAsrWordsSegmentItem>
13912
14462
  }
13913
14463
 
14464
+ /**
14465
+ * CreateQualityInspectTemplate返回参数结构体
14466
+ */
14467
+ export interface CreateQualityInspectTemplateResponse {
14468
+ /**
14469
+ * 音画质检测模板 ID。
14470
+ */
14471
+ Definition?: number
14472
+ /**
14473
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
14474
+ */
14475
+ RequestId?: string
14476
+ }
14477
+
13914
14478
  /**
13915
14479
  * 音画质重生任务输出
13916
14480
  */
@@ -14065,7 +14629,8 @@ export interface DescribeTaskDetailResponse {
14065
14629
  <li>RebuildMedia:音画质重生任务;</li>
14066
14630
  <li>ReviewAudioVideo:音视频审核任务;</li>
14067
14631
  <li>ExtractTraceWatermark:提取溯源水印任务;</li>
14068
- <li>ExtractCopyRightWatermark:提取版权水印任务。</li>
14632
+ <li>ExtractCopyRightWatermark:提取版权水印任务;</li>
14633
+ <li>QualityInspect:音画质检测任务。</li>
14069
14634
  */
14070
14635
  TaskType?: string
14071
14636
  /**
@@ -14182,6 +14747,11 @@ export interface DescribeTaskDetailResponse {
14182
14747
  注意:此字段可能返回 null,表示取不到有效值。
14183
14748
  */
14184
14749
  DescribeFileAttributesTask?: DescribeFileAttributesTask
14750
+ /**
14751
+ * 音画质检测任务信息,仅当 TaskType 为 QualityInspect 时该字段有值。
14752
+ 注意:此字段可能返回 null,表示取不到有效值。
14753
+ */
14754
+ QualityInspectTask?: QualityInspectTask
14185
14755
  /**
14186
14756
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
14187
14757
  */
@@ -16168,6 +16738,18 @@ export interface MediaSubStreamInfoItem {
16168
16738
  Size?: number
16169
16739
  }
16170
16740
 
16741
+ /**
16742
+ * 视频画面马赛克检测的控制参数。
16743
+ */
16744
+ export interface MosaicConfigureInfoForUpdate {
16745
+ /**
16746
+ * 视频画面马赛克检测开关,可选值:
16747
+ <li>ON:开启;</li>
16748
+ <li>OFF:关闭。</li>
16749
+ */
16750
+ Switch?: string
16751
+ }
16752
+
16171
16753
  /**
16172
16754
  * DescribeWatermarkTemplates返回参数结构体
16173
16755
  */
@@ -16923,6 +17505,24 @@ export interface CreateSnapshotByTimeOffsetTemplateRequest {
16923
17505
  FillType?: string
16924
17506
  }
16925
17507
 
17508
+ /**
17509
+ * DescribeQualityInspectTemplates返回参数结构体
17510
+ */
17511
+ export interface DescribeQualityInspectTemplatesResponse {
17512
+ /**
17513
+ * 符合过滤条件的记录总数。
17514
+ */
17515
+ TotalCount?: number
17516
+ /**
17517
+ * 音画质检测模板详情列表。
17518
+ */
17519
+ QualityInspectTemplateSet?: Array<QualityInspectTemplateItem>
17520
+ /**
17521
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
17522
+ */
17523
+ RequestId?: string
17524
+ }
17525
+
16926
17526
  /**
16927
17527
  * 语音关键词识别结果。
16928
17528
  */
@@ -17354,6 +17954,18 @@ export interface ModifyClassResponse {
17354
17954
  RequestId?: string
17355
17955
  }
17356
17956
 
17957
+ /**
17958
+ * 视频画面黑边、白边、黑屏、白屏检测的控制参数。
17959
+ */
17960
+ export interface BlackWhiteEdgeConfigureInfoForUpdate {
17961
+ /**
17962
+ * 视频画面黑边、白边、黑屏、白屏检测开关,可选值:
17963
+ <li>ON:开启;</li>
17964
+ <li>OFF:关闭。</li>
17965
+ */
17966
+ Switch?: string
17967
+ }
17968
+
17357
17969
  /**
17358
17970
  * 编辑点播视频文件信息
17359
17971
  */
@@ -17553,6 +18165,92 @@ export interface PornImgReviewTemplateInfo {
17553
18165
  ReviewConfidence?: number
17554
18166
  }
17555
18167
 
18168
+ /**
18169
+ * 音画质检测模板详情。
18170
+ */
18171
+ export interface QualityInspectTemplateItem {
18172
+ /**
18173
+ * 模板 ID。
18174
+ */
18175
+ Definition?: number
18176
+ /**
18177
+ * 模板类型,可选值:
18178
+ <li>Preset:系统预置模板;</li>
18179
+ <li>Custom:用户自定义模板。</li>
18180
+ */
18181
+ Type?: string
18182
+ /**
18183
+ * 模板名称。
18184
+ */
18185
+ Name?: string
18186
+ /**
18187
+ * 模板描述。
18188
+ */
18189
+ Comment?: string
18190
+ /**
18191
+ * 截帧间隔,单位为秒。
18192
+ */
18193
+ ScreenshotInterval?: number
18194
+ /**
18195
+ * 视频画面抖动重影检测的控制参数。
18196
+ 注意:此字段可能返回 null,表示取不到有效值。
18197
+ */
18198
+ JitterConfigure?: JitterConfigureInfo
18199
+ /**
18200
+ * 视频画面模糊检测的控制参数。
18201
+ 注意:此字段可能返回 null,表示取不到有效值。
18202
+ */
18203
+ BlurConfigure?: BlurConfigureInfo
18204
+ /**
18205
+ * 视频画面低光、过曝检测的控制参数。
18206
+ 注意:此字段可能返回 null,表示取不到有效值。
18207
+ */
18208
+ AbnormalLightingConfigure?: AbnormalLightingConfigureInfo
18209
+ /**
18210
+ * 视频画面花屏检测的控制参数。
18211
+ 注意:此字段可能返回 null,表示取不到有效值。
18212
+ */
18213
+ CrashScreenConfigure?: CrashScreenConfigureInfo
18214
+ /**
18215
+ * 视频画面黑边、白边、黑屏、白屏检测的控制参数。
18216
+ 注意:此字段可能返回 null,表示取不到有效值。
18217
+ */
18218
+ BlackWhiteEdgeConfigure?: BlackWhiteEdgeConfigureInfo
18219
+ /**
18220
+ * 视频画面噪点检测的控制参数。
18221
+ 注意:此字段可能返回 null,表示取不到有效值。
18222
+ */
18223
+ NoiseConfigure?: NoiseConfigureInfo
18224
+ /**
18225
+ * 视频画面马赛克检测的控制参数。
18226
+ 注意:此字段可能返回 null,表示取不到有效值。
18227
+ */
18228
+ MosaicConfigure?: MosaicConfigureInfo
18229
+ /**
18230
+ * 视频画面二维码检测的控制参数。
18231
+ 注意:此字段可能返回 null,表示取不到有效值。
18232
+ */
18233
+ QRCodeConfigure?: QRCodeConfigureInfo
18234
+ /**
18235
+ * 视频画面质量评价的控制参数。
18236
+ 注意:此字段可能返回 null,表示取不到有效值。
18237
+ */
18238
+ QualityEvaluationConfigure?: QualityEvaluationConfigureInfo
18239
+ /**
18240
+ * 音频(静音、低音、爆音)检测的控制参数。
18241
+ 注意:此字段可能返回 null,表示取不到有效值。
18242
+ */
18243
+ VoiceConfigure?: VoiceConfigureInfo
18244
+ /**
18245
+ * 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
18246
+ */
18247
+ CreateTime?: string
18248
+ /**
18249
+ * 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
18250
+ */
18251
+ UpdateTime?: string
18252
+ }
18253
+
17556
18254
  /**
17557
18255
  * Ocr 文字涉及令人不适宜的信息
17558
18256
  */
@@ -17719,22 +18417,13 @@ export interface MediaClassInfo {
17719
18417
  }
17720
18418
 
17721
18419
  /**
17722
- * DescribeTranscodeTemplates返回参数结构体
18420
+ * AI 视频智能分析输入参数类型
17723
18421
  */
17724
- export interface DescribeTranscodeTemplatesResponse {
17725
- /**
17726
- * 符合过滤条件的记录总数。
17727
- */
17728
- TotalCount: number
17729
- /**
17730
- * 转码模板详情列表。
17731
- 注意:此字段可能返回 null,表示取不到有效值。
17732
- */
17733
- TranscodeTemplateSet: Array<TranscodeTemplate>
18422
+ export interface AiAnalysisTaskInput {
17734
18423
  /**
17735
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId
18424
+ * 视频内容分析模板 ID。
17736
18425
  */
17737
- RequestId?: string
18426
+ Definition: number
17738
18427
  }
17739
18428
 
17740
18429
  /**
@@ -17851,6 +18540,39 @@ export interface MediaAiAnalysisFrameTagItem {
17851
18540
  Confidence: number
17852
18541
  }
17853
18542
 
18543
+ /**
18544
+ * 音画质检测异常片段信息。
18545
+ */
18546
+ export interface QualityInspectItem {
18547
+ /**
18548
+ * 置信度,取值范围:[0, 100]。
18549
+ <font color=red>注意:</font> 仅当 Type 取值为下列之一时,本字段取值有效:
18550
+ <li>Mosaic:马赛克;</li>
18551
+ <li>QRCode:二维码;</li>
18552
+ <li>AppletCode:小程序码;</li>
18553
+ <li>BarCode:条形码。</li>
18554
+ */
18555
+ Confidence?: number
18556
+ /**
18557
+ * 异常片段起始的偏移时间,单位:秒。
18558
+ */
18559
+ StartTimeOffset?: number
18560
+ /**
18561
+ * 异常片段终止的偏移时间,单位:秒。
18562
+ */
18563
+ EndTimeOffset?: number
18564
+ /**
18565
+ * 检测出异常的区域坐标。数组包含 4 个元素 [x1,y1,x2,y2],依次表示区域左上点、右下点的横纵坐标。
18566
+ <font color=red>注意:</font> 仅当 Type 取值为下列之一时,本字段取值有效:
18567
+ <li>BlackWhiteEdge:黑白边;</li>
18568
+ <li>Mosaic:马赛克;</li>
18569
+ <li>QRCode:二维码;</li>
18570
+ <li>AppletCode:小程序码;</li>
18571
+ <li>BarCode:条形码。</li>
18572
+ */
18573
+ AreaCoordSet?: Array<number>
18574
+ }
18575
+
17854
18576
  /**
17855
18577
  * DescribeImageProcessingTemplates返回参数结构体
17856
18578
  */
@@ -18440,6 +19162,45 @@ export interface DescribeFileAttributesRequest {
18440
19162
  ExtInfo?: string
18441
19163
  }
18442
19164
 
19165
+ /**
19166
+ * 音画质检测异常结果信息。
19167
+ */
19168
+ export interface QualityInspectResultItem {
19169
+ /**
19170
+ * 异常类型,取值范围:
19171
+ <li>Jitter:抖动;</li>
19172
+ <li>Blur:模糊;</li>
19173
+ <li>LowLighting:低光照;</li>
19174
+ <li>HighLighting:过曝;</li>
19175
+ <li>CrashScreen:花屏;</li>
19176
+ <li>BlackWhiteEdge:黑白边;</li>
19177
+ <li>SolidColorScreen:纯色屏;</li>
19178
+ <li>Noise:噪点;</li>
19179
+ <li>Mosaic:马赛克;</li>
19180
+ <li>QRCode:二维码;</li>
19181
+ <li>AppletCode:小程序码;</li>
19182
+ <li>BarCode:条形码;</li>
19183
+ <li>LowVoice:低音;</li>
19184
+ <li>HighVoice:爆音;</li>
19185
+ <li>NoVoice:静音;</li>
19186
+ <li>LowEvaluation:无参考打分低于阈值。</li>
19187
+ */
19188
+ Type?: string
19189
+ /**
19190
+ * 异常片段列表。
19191
+ <font color=red>注意:</font> 该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
19192
+ */
19193
+ SegmentSet?: Array<QualityInspectItem>
19194
+ /**
19195
+ * 异常片段列表文件 URL。文件 内容 为 JSON,数据结构与 SegmentSet 字段一致。(文件不会永久存储,到达SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
19196
+ */
19197
+ SegmentSetFileUrl?: string
19198
+ /**
19199
+ * 异常片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
19200
+ */
19201
+ SegmentSetFileUrlExpireTime?: string
19202
+ }
19203
+
18443
19204
  /**
18444
19205
  * 视频处理输出文件信息参数。
18445
19206
  */
@@ -18531,6 +19292,20 @@ export interface DeleteWatermarkTemplateResponse {
18531
19292
  RequestId?: string
18532
19293
  }
18533
19294
 
19295
+ /**
19296
+ * DeleteQualityInspectTemplate请求参数结构体
19297
+ */
19298
+ export interface DeleteQualityInspectTemplateRequest {
19299
+ /**
19300
+ * 音画质检测模板号。
19301
+ */
19302
+ Definition: number
19303
+ /**
19304
+ * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
19305
+ */
19306
+ SubAppId?: number
19307
+ }
19308
+
18534
19309
  /**
18535
19310
  * 输出的媒体文件信息。
18536
19311
  */