tencentcloud-sdk-nodejs-mps 4.1.263 → 4.1.264
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.
package/package.json
CHANGED
|
@@ -3117,6 +3117,35 @@ export interface DescribeVideoDatabaseEntryTaskDetailRequest {
|
|
|
3117
3117
|
*/
|
|
3118
3118
|
TaskId: string;
|
|
3119
3119
|
}
|
|
3120
|
+
/**
|
|
3121
|
+
* 智能字幕识别片段。
|
|
3122
|
+
*/
|
|
3123
|
+
export interface SmartSubtitleTaskFullTextSegmentItem {
|
|
3124
|
+
/**
|
|
3125
|
+
* <p>识别片段置信度。取值:0~100。</p>
|
|
3126
|
+
*/
|
|
3127
|
+
Confidence?: number;
|
|
3128
|
+
/**
|
|
3129
|
+
* <p>识别片段起始的偏移时间,单位:秒。</p>
|
|
3130
|
+
*/
|
|
3131
|
+
StartTimeOffset?: number;
|
|
3132
|
+
/**
|
|
3133
|
+
* <p>识别片段终止的偏移时间,单位:秒。</p>
|
|
3134
|
+
*/
|
|
3135
|
+
EndTimeOffset?: number;
|
|
3136
|
+
/**
|
|
3137
|
+
* <p>识别文本。</p>
|
|
3138
|
+
*/
|
|
3139
|
+
Text?: string;
|
|
3140
|
+
/**
|
|
3141
|
+
* <p>翻译文本。</p>
|
|
3142
|
+
*/
|
|
3143
|
+
Trans?: string;
|
|
3144
|
+
/**
|
|
3145
|
+
* <p>说话人ID</p>
|
|
3146
|
+
*/
|
|
3147
|
+
SpeakerId?: string;
|
|
3148
|
+
}
|
|
3120
3149
|
/**
|
|
3121
3150
|
* 用户自定义语音审核任务控制参数
|
|
3122
3151
|
*/
|
|
@@ -3208,6 +3237,11 @@ export interface AiRecognitionTaskInput {
|
|
|
3208
3237
|
* 智能字幕识别结果。
|
|
3209
3238
|
*/
|
|
3210
3239
|
export interface SmartSubtitleTaskTextResultOutput {
|
|
3240
|
+
/**
|
|
3241
|
+
* <p>智能字幕识别片段列表。</p>
|
|
3242
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3243
|
+
*/
|
|
3244
|
+
SegmentSet?: Array<SmartSubtitleTaskFullTextSegmentItem>;
|
|
3211
3245
|
/**
|
|
3212
3246
|
* <p>识别字幕结果</p>
|
|
3213
3247
|
注意:此字段可能返回 null,表示取不到有效值。
|