tencentcloud-sdk-nodejs-mps 4.1.67 → 4.1.69

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.67",
3
+ "version": "4.1.69",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -1597,8 +1597,11 @@ export interface RawWatermarkParameter {
1597
1597
  */
1598
1598
  Type: string;
1599
1599
  /**
1600
- * 原点位置,目前仅支持:
1600
+ * 原点位置,可选值:
1601
1601
  <li>TopLeft:表示坐标原点位于视频图像左上角,水印原点为图片或文字的左上角。</li>
1602
+ <li>TopRight:表示坐标原点位于视频图像的右上角,水印原点为图片或文字的右上角;</li>
1603
+ <li>BottomLeft:表示坐标原点位于视频图像的左下角,水印原点为图片或文字的左下角;</li>
1604
+ <li>BottomRight:表示坐标原点位于视频图像的右下角,水印原点为图片或文字的右下角。</li>
1602
1605
  默认值:TopLeft。
1603
1606
  */
1604
1607
  CoordinateOrigin?: string;
@@ -6575,7 +6578,7 @@ export interface MediaAnimatedGraphicsItem {
6575
6578
  */
6576
6579
  Path?: string;
6577
6580
  /**
6578
- * 转动图模板 ID,参见[转动图参数模板](https://cloud.tencent.com/document/product/862/37042#.E9.A2.84.E7.BD.AE.E8.BD.AC.E5.8A.A8.E5.9B.BE.E6.A8.A1.E6.9D.BF)。
6581
+ * 转动图模板 ID,参见[转动图参数模板](https://cloud.tencent.com/document/product/862/77168#.E8.BD.AC.E5.8A.A8.E5.9B.BE.E6.A8.A1.E6.9D.BF.5B.5D(id.3Amove))
6579
6582
  */
6580
6583
  Definition?: number;
6581
6584
  /**
@@ -9365,6 +9368,11 @@ export interface CreateQualityControlTemplateRequest {
9365
9368
  * 媒体质检模板描述信息,长度限制:256 个字符。
9366
9369
  */
9367
9370
  Comment?: string;
9371
+ /**
9372
+ * 录制文件格式。可选值:
9373
+ <li>PNG: PNG图片</li>
9374
+ */
9375
+ RecordFormat?: string;
9368
9376
  }
9369
9377
  /**
9370
9378
  * AI 样本管理,标签操作。
@@ -10673,6 +10681,11 @@ export interface LiveStreamAsrFullTextRecognitionResult {
10673
10681
  注意:此字段可能返回 null,表示取不到有效值。
10674
10682
  */
10675
10683
  SteadyState?: boolean;
10684
+ /**
10685
+ * websocket与trtc识别结果的UserId
10686
+ 注意:此字段可能返回 null,表示取不到有效值。
10687
+ */
10688
+ UserId?: string;
10676
10689
  }
10677
10690
  /**
10678
10691
  * Ocr 文字涉黄信息
@@ -13453,6 +13466,11 @@ export interface ModifyQualityControlTemplateRequest {
13453
13466
  * 媒体质检配置参数。
13454
13467
  */
13455
13468
  QualityControlItemSet?: Array<QualityControlItemConfig>;
13469
+ /**
13470
+ * 录制文件格式。可选值:
13471
+ <li>PNG: PNG图片</li>
13472
+ */
13473
+ RecordFormat?: string;
13456
13474
  }
13457
13475
  /**
13458
13476
  * DescribeImageSpriteTemplates返回参数结构体
@@ -13998,6 +14016,11 @@ export interface LiveStreamTransTextRecognitionResult {
13998
14016
  注意:此字段可能返回 null,表示取不到有效值。
13999
14017
  */
14000
14018
  SteadyState?: boolean;
14019
+ /**
14020
+ * websocket与trtc实时翻译的UserId
14021
+ 注意:此字段可能返回 null,表示取不到有效值。
14022
+ */
14023
+ UserId?: string;
14001
14024
  }
14002
14025
  /**
14003
14026
  * DescribeStreamLinkSecurityGroups请求参数结构体
@@ -14870,7 +14893,13 @@ export interface LiveStreamAiReviewImageTerrorismResult {
14870
14893
  */
14871
14894
  export interface ProcessLiveStreamRequest {
14872
14895
  /**
14873
- * 直播流 URL(必须是直播文件地址,支持 rtmp,hls 和 flv 等)。
14896
+ * 直播流 URL(必须是直播文件地址,支持 rtmp,hls 和 flv, trtc 等)。
14897
+ trtc地址如下:
14898
+ trtc: //trtc.rtc.qq.com/mps/`<roomid>`?sdkappid=`<sdkappid>`&userid=`<userid>`&usersig=<`usersig>`
14899
+ `<roomid>` 为trtc的房间号id, 为数字
14900
+ `<sdkappid>` 为trtc的sdk app id
14901
+ `<userid>` 为服务进入房间的用户id,可以区分谁是机器人
14902
+ <`usersig>` 为trtc 用户的签名
14874
14903
  */
14875
14904
  Url: string;
14876
14905
  /**