tencentcloud-sdk-nodejs-vod 4.0.252 → 4.0.254

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.
@@ -447,7 +447,8 @@ class Client extends TencentCloudCommon.AbstractClient {
447
447
  }
448
448
  /**
449
449
  * 该接口用于查询指定日期范围内每天的播放统计数据。
450
- * 可以查询最近30天的播放统计数据。
450
+ * 可以查询最近一年的播放统计数据。
451
+ * 结束日期和起始日期的时间跨度最大为90天。
451
452
  */
452
453
  async DescribeDailyMediaPlayStat(req, cb) {
453
454
  return this.request("DescribeDailyMediaPlayStat", req, cb);
@@ -466,7 +467,7 @@ class Client extends TencentCloudCommon.AbstractClient {
466
467
  }
467
468
  /**
468
469
  * 该接口用于查询每日播放Top100 的媒体文件的播放统计数据。
469
- * 可以查询最近30天的播放统计数据。
470
+ * 可以查询最近一年的播放统计数据。
470
471
  * 可以按播放次数或者播放流量查询。
471
472
  * 播放次数统计说明:
472
473
  1. HLS 文件:访问 M3U8 文件时统计播放次数;访问 TS 文件不统计播放次数。
@@ -913,7 +914,7 @@ class Client extends TencentCloudCommon.AbstractClient {
913
914
  }
914
915
  /**
915
916
  * 该接口用于查询播放统计文件的下载地址。
916
- * 可以查询最近30天的播放统计文件下载地址。
917
+ * 可以查询最近一年的播放统计文件下载地址,查询的起始日期和结束日期的时间跨度不超过90天。
917
918
  * 云点播每天对前一天的 CDN 请求日志进行分析处理,生成播放统计文件。
918
919
  * 播放统计文件内容包含媒体文件的播放次数、播放流量等统计信息。
919
920
  * 播放次数统计说明:
@@ -566,9 +566,18 @@ export interface AiReviewProhibitedOcrTaskOutput {
566
566
  */
567
567
  Suggestion: string;
568
568
  /**
569
- * Ocr 文字有涉违禁嫌疑的视频片段列表。
570
- */
569
+ * Ocr 文字有涉违禁嫌疑的视频片段列表。
570
+ <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
571
+ */
571
572
  SegmentSet: Array<MediaContentReviewOcrTextSegmentItem>;
573
+ /**
574
+ * Ocr 文字有涉违禁嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
575
+ */
576
+ SegmentSetFileUrl: string;
577
+ /**
578
+ * Ocr 文字有涉违禁嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
579
+ */
580
+ SegmentSetFileUrlExpireTime: string;
572
581
  }
573
582
  /**
574
583
  * 小程序审核概要元信息
@@ -642,9 +651,18 @@ export interface ModifyEventConfigResponse {
642
651
  */
643
652
  export interface AiAnalysisTaskCoverOutput {
644
653
  /**
645
- * 智能封面列表。
646
- */
654
+ * 智能封面列表。
655
+ <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 CoverSetFileUrl 对应的文件中获取。
656
+ */
647
657
  CoverSet: Array<MediaAiAnalysisCoverItem>;
658
+ /**
659
+ * 智能封面列表文件 URL。文件的内容为 JSON,数据结构与 CoverSet 字段一致。 (文件不会永久存储,到达 CoverSetFileUrlExpireTime 时间点后文件将被删除)。
660
+ */
661
+ CoverSetFileUrl: string;
662
+ /**
663
+ * 智能封面列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
664
+ */
665
+ CoverSetFileUrlExpireTime: string;
648
666
  }
649
667
  /**
650
668
  * 点播文件指定时间点截图信息
@@ -2188,9 +2206,18 @@ export interface DescribeEventConfigRequest {
2188
2206
  */
2189
2207
  export interface AiAnalysisTaskClassificationOutput {
2190
2208
  /**
2191
- * 视频智能分类列表。
2192
- */
2209
+ * 视频智能分类列表。
2210
+ <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 ClassificationSetFileUrl 对应的文件中获取。
2211
+ */
2193
2212
  ClassificationSet: Array<MediaAiAnalysisClassificationItem>;
2213
+ /**
2214
+ * 视频智能分类列表文件 URL。文件的内容为 JSON,数据结构与 ClassificationSet 字段一致。 (文件不会永久存储,到达 ClassificationSetFileUrlExpireTime 时间点后文件将被删除)。
2215
+ */
2216
+ ClassificationSetFileUrl: string;
2217
+ /**
2218
+ * 视频智能分类列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
2219
+ */
2220
+ ClassificationSetFileUrlExpireTime: string;
2194
2221
  }
2195
2222
  /**
2196
2223
  * 文件删除任务
@@ -3633,9 +3660,18 @@ export interface AiReviewPornAsrTaskOutput {
3633
3660
  */
3634
3661
  Suggestion: string;
3635
3662
  /**
3636
- * Asr 文字有涉黄嫌疑的视频片段列表。
3637
- */
3663
+ * Asr 文字有涉黄嫌疑的视频片段列表。
3664
+ <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
3665
+ */
3638
3666
  SegmentSet: Array<MediaContentReviewAsrTextSegmentItem>;
3667
+ /**
3668
+ * Asr 文字有涉黄嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
3669
+ */
3670
+ SegmentSetFileUrl: string;
3671
+ /**
3672
+ * Asr 文字有涉黄嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
3673
+ */
3674
+ SegmentSetFileUrlExpireTime: string;
3639
3675
  }
3640
3676
  /**
3641
3677
  * SimpleHlsClip返回参数结构体
@@ -4548,6 +4584,43 @@ export interface AiRecognitionTaskSegmentSegmentItem {
4548
4584
  */
4549
4585
  SpecialInfo: string;
4550
4586
  }
4587
+ /**
4588
+ * 取回视频任务信息
4589
+ */
4590
+ export interface RestoreMediaTask {
4591
+ /**
4592
+ * 取回任务状态,0表示取回完成,其他值表示取回还未完成。
4593
+ */
4594
+ Status: number;
4595
+ /**
4596
+ * 提示信息。
4597
+ */
4598
+ Message: string;
4599
+ /**
4600
+ * 文件ID。
4601
+ */
4602
+ FileId: string;
4603
+ /**
4604
+ * 文件原始存储类型。
4605
+ */
4606
+ OriginalStorageClass: string;
4607
+ /**
4608
+ * 文件目标存储类型。对于临时取回,目标存储类型与原始存储类型相同。
4609
+ */
4610
+ TargetStorageClass: string;
4611
+ /**
4612
+ * 取回模式,取值:
4613
+ <li>Expedited:极速模式</li>
4614
+ <li>Standard:标准模式</li>
4615
+ <li>Bulk:批量模式</li>
4616
+ */
4617
+ RestoreTier: string;
4618
+ /**
4619
+ * 临时取回副本有效期,单位:天。对于永久取回,取值为0。
4620
+ 注意:此字段可能返回 null,表示取不到有效值。
4621
+ */
4622
+ RestoreDay: number;
4623
+ }
4551
4624
  /**
4552
4625
  * 内容审核 Ocr 文字鉴黄任务输入参数类型
4553
4626
  */
@@ -4587,9 +4660,18 @@ export interface CreateSuperPlayerConfigResponse {
4587
4660
  */
4588
4661
  export interface AiAnalysisTaskFrameTagOutput {
4589
4662
  /**
4590
- * 视频按帧标签列表。
4591
- */
4663
+ * 视频按帧标签列表。
4664
+ <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
4665
+ */
4592
4666
  SegmentSet: Array<MediaAiAnalysisFrameTagSegmentItem>;
4667
+ /**
4668
+ * 视频按帧标签列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
4669
+ */
4670
+ SegmentSetFileUrl: string;
4671
+ /**
4672
+ * 视频按帧标签列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
4673
+ */
4674
+ SegmentSetFileUrlExpireTime: string;
4593
4675
  }
4594
4676
  /**
4595
4677
  * ModifyAdaptiveDynamicStreamingTemplate请求参数结构体
@@ -4830,18 +4912,36 @@ export interface SearchMediaResponse {
4830
4912
  */
4831
4913
  export interface AiAnalysisTaskTagOutput {
4832
4914
  /**
4833
- * 视频智能标签列表。
4834
- */
4915
+ * 视频智能标签列表。
4916
+ <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 TagSetFileUrl 对应的文件中获取。
4917
+ */
4835
4918
  TagSet: Array<MediaAiAnalysisTagItem>;
4919
+ /**
4920
+ * 视频智能标签列表文件 URL。文件的内容为 JSON,数据结构与 TagSet 字段一致。 (文件不会永久存储,到达 TagSetFileUrlExpireTime 时间点后文件将被删除)。
4921
+ */
4922
+ TagSetFileUrl: string;
4923
+ /**
4924
+ * 视频智能标签列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
4925
+ */
4926
+ TagSetFileUrlExpireTime: string;
4836
4927
  }
4837
4928
  /**
4838
4929
  * 智能精彩片段结果信息
4839
4930
  */
4840
4931
  export interface AiAnalysisTaskHighlightOutput {
4841
4932
  /**
4842
- * 视频智能精彩片段列表。
4843
- */
4933
+ * 视频智能精彩片段列表。
4934
+ <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 HighlightSetFileUrl 对应的文件中获取。
4935
+ */
4844
4936
  HighlightSet: Array<MediaAiAnalysisHighlightItem>;
4937
+ /**
4938
+ * 视频智能精彩片段列表文件 URL。文件的内容为 JSON,数据结构与 HighlightSet 字段一致。 (文件不会永久存储,到达 HighlightSetFileUrlExpireTime 时间点后文件将被删除)。
4939
+ */
4940
+ HighlightSetFileUrl: string;
4941
+ /**
4942
+ * 视频智能精彩片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
4943
+ */
4944
+ HighlightSetFileUrlExpireTime: string;
4845
4945
  }
4846
4946
  /**
4847
4947
  * 字幕信息输入参数。
@@ -6528,9 +6628,18 @@ export interface AiReviewTerrorismTaskOutput {
6528
6628
  */
6529
6629
  Label: string;
6530
6630
  /**
6531
- * 有暴恐嫌疑的视频片段列表。
6532
- */
6631
+ * 有暴恐嫌疑的视频片段列表。
6632
+ <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
6633
+ */
6533
6634
  SegmentSet: Array<MediaContentReviewSegmentItem>;
6635
+ /**
6636
+ * 暴恐嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
6637
+ */
6638
+ SegmentSetFileUrl: string;
6639
+ /**
6640
+ * 暴恐嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
6641
+ */
6642
+ SegmentSetFileUrlExpireTime: string;
6534
6643
  }
6535
6644
  /**
6536
6645
  * DescribeImageProcessingTemplates请求参数结构体
@@ -6637,9 +6746,18 @@ export interface AiReviewTerrorismOcrTaskOutput {
6637
6746
  */
6638
6747
  Suggestion: string;
6639
6748
  /**
6640
- * Ocr 文字有涉恐嫌疑的视频片段列表。
6641
- */
6749
+ * Ocr 文字有涉恐嫌疑的视频片段列表。
6750
+ <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
6751
+ */
6642
6752
  SegmentSet: Array<MediaContentReviewOcrTextSegmentItem>;
6753
+ /**
6754
+ * Ocr 文字有涉恐嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
6755
+ */
6756
+ SegmentSetFileUrl: string;
6757
+ /**
6758
+ * Ocr 文字有涉恐嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
6759
+ */
6760
+ SegmentSetFileUrlExpireTime: string;
6643
6761
  }
6644
6762
  /**
6645
6763
  * 智能分析结果
@@ -7538,9 +7656,18 @@ export interface AiReviewPornOcrTaskOutput {
7538
7656
  */
7539
7657
  Suggestion: string;
7540
7658
  /**
7541
- * Ocr 文字有涉黄嫌疑的视频片段列表。
7542
- */
7659
+ * Ocr 文字有涉黄嫌疑的视频片段列表。
7660
+ <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
7661
+ */
7543
7662
  SegmentSet: Array<MediaContentReviewOcrTextSegmentItem>;
7663
+ /**
7664
+ * Ocr 文字有涉黄嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
7665
+ */
7666
+ SegmentSetFileUrl: string;
7667
+ /**
7668
+ * Ocr 文字有涉黄嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
7669
+ */
7670
+ SegmentSetFileUrlExpireTime: string;
7544
7671
  }
7545
7672
  /**
7546
7673
  * ApplyUpload请求参数结构体
@@ -8124,9 +8251,18 @@ export interface AiReviewProhibitedAsrTaskOutput {
8124
8251
  */
8125
8252
  Suggestion: string;
8126
8253
  /**
8127
- * Asr 文字有涉违禁嫌疑的视频片段列表。
8128
- */
8254
+ * Asr 文字有涉违禁嫌疑的视频片段列表。
8255
+ <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
8256
+ */
8129
8257
  SegmentSet: Array<MediaContentReviewAsrTextSegmentItem>;
8258
+ /**
8259
+ * Asr 文字有涉违禁嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
8260
+ */
8261
+ SegmentSetFileUrl: string;
8262
+ /**
8263
+ * Asr 文字有涉违禁嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
8264
+ */
8265
+ SegmentSetFileUrlExpireTime: string;
8130
8266
  }
8131
8267
  /**
8132
8268
  * CreateClass返回参数结构体
@@ -8820,6 +8956,11 @@ export interface EventContent {
8820
8956
  注意:此字段可能返回 null,表示取不到有效值。
8821
8957
  */
8822
8958
  WechatMiniProgramPublishCompleteEvent: WechatMiniProgramPublishTask;
8959
+ /**
8960
+ * 视频取回完成事件,当事件类型为RestoreMediaComplete 时有效。
8961
+ 注意:此字段可能返回 null,表示取不到有效值。
8962
+ */
8963
+ RestoreMediaCompleteEvent: RestoreMediaTask;
8823
8964
  }
8824
8965
  /**
8825
8966
  * 智能精彩片段任务控制参数
@@ -8895,9 +9036,18 @@ export interface AiReviewPoliticalAsrTaskOutput {
8895
9036
  */
8896
9037
  Suggestion: string;
8897
9038
  /**
8898
- * Asr 文字有涉政、敏感嫌疑的视频片段列表。
8899
- */
9039
+ * Asr 文字有涉政、敏感嫌疑的视频片段列表。
9040
+ <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
9041
+ */
8900
9042
  SegmentSet: Array<MediaContentReviewAsrTextSegmentItem>;
9043
+ /**
9044
+ * Asr 文字有涉政、敏感嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
9045
+ */
9046
+ SegmentSetFileUrl: string;
9047
+ /**
9048
+ * Asr 文字有涉政、敏感嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
9049
+ */
9050
+ SegmentSetFileUrlExpireTime: string;
8901
9051
  }
8902
9052
  /**
8903
9053
  * 输出的音频流信息
@@ -9236,9 +9386,18 @@ export interface AiReviewPornTaskOutput {
9236
9386
  */
9237
9387
  Label: string;
9238
9388
  /**
9239
- * 有涉黄嫌疑的视频片段列表。
9240
- */
9389
+ * 有涉黄嫌疑的视频片段列表。
9390
+ <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
9391
+ */
9241
9392
  SegmentSet: Array<MediaContentReviewSegmentItem>;
9393
+ /**
9394
+ * 涉黄嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
9395
+ */
9396
+ SegmentSetFileUrl: string;
9397
+ /**
9398
+ * 涉黄嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
9399
+ */
9400
+ SegmentSetFileUrlExpireTime: string;
9242
9401
  }
9243
9402
  /**
9244
9403
  * 语音全文识别结果。
@@ -10324,9 +10483,18 @@ export interface AiReviewPoliticalTaskOutput {
10324
10483
  */
10325
10484
  Label: string;
10326
10485
  /**
10327
- * 有涉政嫌疑的视频片段列表。
10328
- */
10486
+ * 有涉政嫌疑的视频片段列表。
10487
+ <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
10488
+ */
10329
10489
  SegmentSet: Array<MediaContentReviewPoliticalSegmentItem>;
10490
+ /**
10491
+ * 涉政嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
10492
+ */
10493
+ SegmentSetFileUrl: string;
10494
+ /**
10495
+ * 涉政嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
10496
+ */
10497
+ SegmentSetFileUrlExpireTime: string;
10330
10498
  }
10331
10499
  /**
10332
10500
  * 内容审核鉴政任务结果类型
@@ -12571,9 +12739,18 @@ export interface AiReviewPoliticalOcrTaskOutput {
12571
12739
  */
12572
12740
  Suggestion: string;
12573
12741
  /**
12574
- * Ocr 文字有涉政、敏感嫌疑的视频片段列表。
12575
- */
12742
+ * Ocr 文字有涉政、敏感嫌疑的视频片段列表。
12743
+ <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
12744
+ */
12576
12745
  SegmentSet: Array<MediaContentReviewOcrTextSegmentItem>;
12746
+ /**
12747
+ * Ocr 文字有涉政、敏感嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
12748
+ */
12749
+ SegmentSetFileUrl: string;
12750
+ /**
12751
+ * Ocr 文字有涉政、敏感嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
12752
+ */
12753
+ SegmentSetFileUrlExpireTime: string;
12577
12754
  }
12578
12755
  /**
12579
12756
  * 文本全文本识别任务控制参数