tencentcloud-sdk-nodejs-mps 4.1.66 → 4.1.68

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-mps",
3
- "version": "4.1.66",
3
+ "version": "4.1.68",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -9365,6 +9365,11 @@ export interface CreateQualityControlTemplateRequest {
9365
9365
  * 媒体质检模板描述信息,长度限制:256 个字符。
9366
9366
  */
9367
9367
  Comment?: string;
9368
+ /**
9369
+ * 录制文件格式。可选值:
9370
+ <li>PNG: PNG图片</li>
9371
+ */
9372
+ RecordFormat?: string;
9368
9373
  }
9369
9374
  /**
9370
9375
  * AI 样本管理,标签操作。
@@ -10673,6 +10678,11 @@ export interface LiveStreamAsrFullTextRecognitionResult {
10673
10678
  注意:此字段可能返回 null,表示取不到有效值。
10674
10679
  */
10675
10680
  SteadyState?: boolean;
10681
+ /**
10682
+ * websocket与trtc识别结果的UserId
10683
+ 注意:此字段可能返回 null,表示取不到有效值。
10684
+ */
10685
+ UserId?: string;
10676
10686
  }
10677
10687
  /**
10678
10688
  * Ocr 文字涉黄信息
@@ -13453,6 +13463,11 @@ export interface ModifyQualityControlTemplateRequest {
13453
13463
  * 媒体质检配置参数。
13454
13464
  */
13455
13465
  QualityControlItemSet?: Array<QualityControlItemConfig>;
13466
+ /**
13467
+ * 录制文件格式。可选值:
13468
+ <li>PNG: PNG图片</li>
13469
+ */
13470
+ RecordFormat?: string;
13456
13471
  }
13457
13472
  /**
13458
13473
  * DescribeImageSpriteTemplates返回参数结构体
@@ -13998,6 +14013,11 @@ export interface LiveStreamTransTextRecognitionResult {
13998
14013
  注意:此字段可能返回 null,表示取不到有效值。
13999
14014
  */
14000
14015
  SteadyState?: boolean;
14016
+ /**
14017
+ * websocket与trtc实时翻译的UserId
14018
+ 注意:此字段可能返回 null,表示取不到有效值。
14019
+ */
14020
+ UserId?: string;
14001
14021
  }
14002
14022
  /**
14003
14023
  * DescribeStreamLinkSecurityGroups请求参数结构体
@@ -14870,7 +14890,13 @@ export interface LiveStreamAiReviewImageTerrorismResult {
14870
14890
  */
14871
14891
  export interface ProcessLiveStreamRequest {
14872
14892
  /**
14873
- * 直播流 URL(必须是直播文件地址,支持 rtmp,hls 和 flv 等)。
14893
+ * 直播流 URL(必须是直播文件地址,支持 rtmp,hls 和 flv, trtc 等)。
14894
+ trtc地址如下:
14895
+ trtc: //trtc.rtc.qq.com/mps/`<roomid>`?sdkappid=`<sdkappid>`&userid=`<userid>`&usersig=<`usersig>`
14896
+ `<roomid>` 为trtc的房间号id, 为数字
14897
+ `<sdkappid>` 为trtc的sdk app id
14898
+ `<userid>` 为服务进入房间的用户id,可以区分谁是机器人
14899
+ <`usersig>` 为trtc 用户的签名
14874
14900
  */
14875
14901
  Url: string;
14876
14902
  /**