tencentcloud-sdk-nodejs-mps 4.0.607 → 4.0.609

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.
@@ -995,6 +995,41 @@ export interface OcrWordsConfigureInfo {
995
995
  */
996
996
  LabelSet?: Array<string>;
997
997
  }
998
+ /**
999
+ * 诊断结果项。
1000
+ */
1001
+ export interface DiagnoseResult {
1002
+ /**
1003
+ * 诊断出的异常类别。
1004
+ 注意:此字段可能返回 null,表示取不到有效值。
1005
+ */
1006
+ Category?: string;
1007
+ /**
1008
+ * 诊断出的具体异常类型。
1009
+ 注意:此字段可能返回 null,表示取不到有效值。
1010
+ */
1011
+ Type?: string;
1012
+ /**
1013
+ * 诊断出异常开始的PTS时间戳。
1014
+ 注意:此字段可能返回 null,表示取不到有效值。
1015
+ */
1016
+ Timestamp?: number;
1017
+ /**
1018
+ * 诊断出的异常描述。
1019
+ 注意:此字段可能返回 null,表示取不到有效值。
1020
+ */
1021
+ Description?: string;
1022
+ /**
1023
+ * 诊断到异常的北京时间,采用 ISO 日期格式。
1024
+ 注意:此字段可能返回 null,表示取不到有效值。
1025
+ */
1026
+ DateTime?: string;
1027
+ /**
1028
+ * 诊断出的异常级别。
1029
+ 注意:此字段可能返回 null,表示取不到有效值。
1030
+ */
1031
+ SeverityLevel?: string;
1032
+ }
998
1033
  /**
999
1034
  * 自定义水印规格参数。
1000
1035
  */
@@ -1670,6 +1705,16 @@ export interface ParseLiveStreamProcessNotificationResponse {
1670
1705
  注意:此字段可能返回 null,表示取不到有效值。
1671
1706
  */
1672
1707
  AiRecognitionResultInfo?: LiveStreamAiRecognitionResultInfo;
1708
+ /**
1709
+ * 内容分析结果,当 NotificationType 为 AiAnalysisResult 时有效。
1710
+ 注意:此字段可能返回 null,表示取不到有效值。
1711
+ */
1712
+ AiAnalysisResultInfo?: LiveStreamAiAnalysisResultInfo;
1713
+ /**
1714
+ * 媒体质检结果,当 NotificationType 为 AiQualityControlResult 时有效。
1715
+ 注意:此字段可能返回 null,表示取不到有效值。
1716
+ */
1717
+ AiQualityControlResultInfo?: LiveStreamAiQualityControlResultInfo;
1673
1718
  /**
1674
1719
  * 用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长50个字符,不带或者带空字符串表示不做去重。
1675
1720
  */
@@ -3929,6 +3974,21 @@ export interface DeleteWordSamplesRequest {
3929
3974
  */
3930
3975
  Keywords: Array<string>;
3931
3976
  }
3977
+ /**
3978
+ * 直播流质检结果
3979
+ */
3980
+ export interface LiveStreamAiQualityControlResultInfo {
3981
+ /**
3982
+ * 质检结果列表。
3983
+ 注意:此字段可能返回 null,表示取不到有效值。
3984
+ */
3985
+ QualityControlResults: Array<QualityControlResult>;
3986
+ /**
3987
+ * 格式诊断结果列表。
3988
+ 注意:此字段可能返回 null,表示取不到有效值。
3989
+ */
3990
+ DiagnoseResults?: Array<DiagnoseResult>;
3991
+ }
3932
3992
  /**
3933
3993
  * EnableSchedule请求参数结构体
3934
3994
  */
@@ -6974,6 +7034,21 @@ export interface LiveStreamAsrFullTextRecognitionResult {
6974
7034
  * 识别片段置信度。取值:0~100。
6975
7035
  */
6976
7036
  Confidence: number;
7037
+ /**
7038
+ * 识别开始UTC时间。
7039
+ 注意:此字段可能返回 null,表示取不到有效值。
7040
+ */
7041
+ StartTime?: string;
7042
+ /**
7043
+ * 识别结束UTC时间。
7044
+ 注意:此字段可能返回 null,表示取不到有效值。
7045
+ */
7046
+ EndTime?: string;
7047
+ /**
7048
+ * 稳态标记。
7049
+ 注意:此字段可能返回 null,表示取不到有效值。
7050
+ */
7051
+ SteadyState?: boolean;
6977
7052
  }
6978
7053
  /**
6979
7054
  * Ocr 文字涉黄信息
@@ -7049,6 +7124,28 @@ export interface WithdrawsWatermarkResponse {
7049
7124
  */
7050
7125
  RequestId?: string;
7051
7126
  }
7127
+ /**
7128
+ * 智能拆条片段。
7129
+ */
7130
+ export interface SegmentRecognitionItem {
7131
+ /**
7132
+ * 置信度。
7133
+ */
7134
+ Confidence: number;
7135
+ /**
7136
+ * 片段起始时间偏移。
7137
+ */
7138
+ StartTimeOffset: number;
7139
+ /**
7140
+ * 片段结束时间偏移。
7141
+ */
7142
+ EndTimeOffset: number;
7143
+ /**
7144
+ * 拆条片段URL。
7145
+ 注意:此字段可能返回 null,表示取不到有效值。
7146
+ */
7147
+ SegmentUrl?: string;
7148
+ }
7052
7149
  /**
7053
7150
  * 内容审核 Asr 文字敏感任务输入参数类型
7054
7151
  */
@@ -7058,6 +7155,16 @@ export interface AiReviewPoliticalAsrTaskInput {
7058
7155
  */
7059
7156
  Definition: number;
7060
7157
  }
7158
+ /**
7159
+ * 直播流分析结果
7160
+ */
7161
+ export interface LiveStreamAiAnalysisResultInfo {
7162
+ /**
7163
+ * 直播分析子任务结果,暂时只支持直播拆条。
7164
+ 注意:此字段可能返回 null,表示取不到有效值。
7165
+ */
7166
+ ResultSet?: Array<LiveStreamAiAnalysisResultItem>;
7167
+ }
7061
7168
  /**
7062
7169
  * 动作识别参数配置
7063
7170
  */
@@ -7730,30 +7837,30 @@ export interface ParseNotificationResponse {
7730
7837
  <li>EditMediaTask:视频编辑任务。</li>
7731
7838
  <li>ScheduleTask:编排任务。</li>
7732
7839
  */
7733
- EventType: string;
7840
+ EventType?: string;
7734
7841
  /**
7735
7842
  * 视频处理任务信息,仅当 EventType 为 WorkflowTask,该字段有值。
7736
7843
  注意:此字段可能返回 null,表示取不到有效值。
7737
7844
  */
7738
- WorkflowTaskEvent: WorkflowTask;
7845
+ WorkflowTaskEvent?: WorkflowTask;
7739
7846
  /**
7740
7847
  * 视频编辑任务信息,仅当 EventType 为 EditMediaTask,该字段有值。
7741
7848
  注意:此字段可能返回 null,表示取不到有效值。
7742
7849
  */
7743
- EditMediaTaskEvent: EditMediaTask;
7850
+ EditMediaTaskEvent?: EditMediaTask;
7744
7851
  /**
7745
7852
  * 用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长50个字符,不带或者带空字符串表示不做去重。
7746
7853
  */
7747
- SessionId: string;
7854
+ SessionId?: string;
7748
7855
  /**
7749
7856
  * 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长1000个字符。
7750
7857
  */
7751
- SessionContext: string;
7858
+ SessionContext?: string;
7752
7859
  /**
7753
7860
  * 编排任务信息,仅当 EventType 为 ScheduleTask,该字段有值。
7754
7861
  注意:此字段可能返回 null,表示取不到有效值。
7755
7862
  */
7756
- ScheduleTaskEvent: ScheduleTask;
7863
+ ScheduleTaskEvent?: ScheduleTask;
7757
7864
  /**
7758
7865
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7759
7866
  */
@@ -8453,6 +8560,21 @@ export interface LiveStreamTransTextRecognitionResult {
8453
8560
  * 翻译文本。
8454
8561
  */
8455
8562
  Trans: string;
8563
+ /**
8564
+ * 翻译开始UTC时间。
8565
+ 注意:此字段可能返回 null,表示取不到有效值。
8566
+ */
8567
+ StartTime?: string;
8568
+ /**
8569
+ * 翻译结束UTC时间。
8570
+ 注意:此字段可能返回 null,表示取不到有效值。
8571
+ */
8572
+ EndTime?: string;
8573
+ /**
8574
+ * 稳态标记。
8575
+ 注意:此字段可能返回 null,表示取不到有效值。
8576
+ */
8577
+ SteadyState?: boolean;
8456
8578
  }
8457
8579
  /**
8458
8580
  * 媒体处理任务中的水印参数类型
@@ -11904,6 +12026,22 @@ export interface RegionInfo {
11904
12026
  */
11905
12027
  Name: string;
11906
12028
  }
12029
+ /**
12030
+ * 直播流 AI 分析结果
12031
+ */
12032
+ export interface LiveStreamAiAnalysisResultItem {
12033
+ /**
12034
+ * 结果的类型,取值范围:
12035
+ <li>SegmentRecognition:拆条。</li>
12036
+ */
12037
+ Type: string;
12038
+ /**
12039
+ * 拆条结果,当 Type 为
12040
+ SegmentRecognition 时有效。
12041
+ 注意:此字段可能返回 null,表示取不到有效值。
12042
+ */
12043
+ SegmentResultSet: Array<SegmentRecognitionItem>;
12044
+ }
11907
12045
  /**
11908
12046
  * 翻译结果。
11909
12047
  */