tencentcloud-sdk-nodejs-mps 4.1.60 → 4.1.62

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.60",
3
+ "version": "4.1.62",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -445,6 +445,10 @@ export interface CreateOutputSRTSettings {
445
445
  * SRT模式,可选[LISTENER|CALLER],默认为CALLER。
446
446
  */
447
447
  Mode?: string;
448
+ /**
449
+ * SRT FEC 设置
450
+ */
451
+ FEC?: SRTFECFullOptions;
448
452
  }
449
453
  /**
450
454
  * 智能精彩片段信息
@@ -2142,6 +2146,31 @@ export interface CreateOutputRTPSettingsDestinations {
2142
2146
  */
2143
2147
  Port: number;
2144
2148
  }
2149
+ /**
2150
+ * SRT FEC 高级配置
2151
+ */
2152
+ export interface SRTFECFullOptions {
2153
+ /**
2154
+ * 是否开启 FEC
2155
+ */
2156
+ Enable?: boolean;
2157
+ /**
2158
+ * FEC 数据包 Layout 列数量. 取值范围>0
2159
+ */
2160
+ Cols?: number;
2161
+ /**
2162
+ * FEC 数据包 Layout 行数量. 取值范围 >=2 或者 <=-2
2163
+ */
2164
+ Rows?: number;
2165
+ /**
2166
+ * FEC 开启的情况下,ARQ的策略。取值 "always", "onreq", "never"
2167
+ */
2168
+ ARQ?: string;
2169
+ /**
2170
+ * FEC 数据包 Layout 组织形式,取值 "even", "staircase"
2171
+ */
2172
+ Layout?: string;
2173
+ }
2145
2174
  /**
2146
2175
  * 智能分类任务控制参数
2147
2176
  */
@@ -3409,6 +3438,10 @@ export interface DescribeInputSRTSettings {
3409
3438
  注意:此字段可能返回 null,表示取不到有效值。
3410
3439
  */
3411
3440
  SourceAddresses?: Array<SRTSourceAddressResp>;
3441
+ /**
3442
+ * FEC 设置
3443
+ */
3444
+ FEC?: SRTFECSimpleOptions;
3412
3445
  }
3413
3446
  /**
3414
3447
  * 智能封面结果类型
@@ -5397,29 +5430,13 @@ export interface ImageWatermarkInput {
5397
5430
  RepeatType?: string;
5398
5431
  }
5399
5432
  /**
5400
- * 音轨信息
5433
+ * SRT FEC 设置
5401
5434
  */
5402
- export interface TrackInfo {
5435
+ export interface SRTFECSimpleOptions {
5403
5436
  /**
5404
- * 音轨和声道数字,说明:
5405
- 当:SelectType值为track,此值为整数类型,例如:1;
5406
- 当:SelectType值为track_channel,此值为小数类型,例如:1.0;
5407
- 默认值:1.0
5408
- 注意:整数部分代表音轨序号,以小数部分代表声道。音轨序号即为音轨的stream index,支持输入0和正整数。小数部分最多支持2位小数,并且仅支持0-63,但是如果Codec为aac/eac3/ac3时,小数部分仅支持0-15。例如:对于stream index为1的音轨,1.0代表这个音轨的第1个声道,1.1代表这个音轨的第2个声道。
5409
- 注意:此字段可能返回 null,表示取不到有效值。
5410
- */
5411
- TrackNum?: string;
5412
- /**
5413
- * 声道音量大小,说明:
5414
- 当:AudioChannel的值为1时,此数组长度为1,例如:[6];
5415
- 当:AudioChannel的值为2时,此数组长度为2,例如:[0,6];
5416
- 当:AudioChannel的值为6时,此数组长度大于2小于16,例如:[-60,0,0,6]。
5417
- 此值数组值取值范围:[-60, 6],其中-60代表静音、0代表保持原音量,6表示原音量增加一倍,默认值为-60。
5418
- 注意:支持3位小数。
5419
-
5420
- 注意:此字段可能返回 null,表示取不到有效值。
5437
+ * 是否开启 FEC
5421
5438
  */
5422
- ChannelVolume?: Array<number>;
5439
+ Enable?: boolean;
5423
5440
  }
5424
5441
  /**
5425
5442
  * BatchProcessMedia返回参数结构体
@@ -7908,6 +7925,10 @@ export interface CreateInputSRTSettings {
7908
7925
  * SRT对端地址,当Mode为CALLER时必填,且只能填1组。
7909
7926
  */
7910
7927
  SourceAddresses?: Array<SRTSourceAddressReq>;
7928
+ /**
7929
+ * SRT FEC 设置
7930
+ */
7931
+ FEC?: SRTFECSimpleOptions;
7911
7932
  }
7912
7933
  /**
7913
7934
  * DescribeGroupAttachFlowsById请求参数结构体
@@ -8023,7 +8044,7 @@ export interface DescribeContentReviewTemplatesResponse {
8023
8044
  */
8024
8045
  export interface BlindWatermarkEmbedInfo {
8025
8046
  /**
8026
- * 盲水印文字,需要经过 URL 安全的 Base64 编码。
8047
+ * 盲水印文字,经过URL安全的Base64编码的4Byte数据。Base64解码之后,少于4Byte将会填充0x00到4Byte,超过4Byte将会截断为4Byte。
8027
8048
  注意:此字段可能返回 null,表示取不到有效值。
8028
8049
  */
8029
8050
  EmbedText?: string;
@@ -14052,6 +14073,10 @@ export interface DescribeOutputSRTSettings {
14052
14073
  注意:此字段可能返回 null,表示取不到有效值。
14053
14074
  */
14054
14075
  SourceAddresses?: Array<OutputSRTSourceAddressResp>;
14076
+ /**
14077
+ * FEC 配置
14078
+ */
14079
+ FEC?: SRTFECFullOptions;
14055
14080
  }
14056
14081
  /**
14057
14082
  * 人脸识别输入。
@@ -17303,6 +17328,31 @@ export interface SampleSnapshotTaskInput {
17303
17328
  */
17304
17329
  ObjectNumberFormat?: NumberFormat;
17305
17330
  }
17331
+ /**
17332
+ * 音轨信息
17333
+ */
17334
+ export interface TrackInfo {
17335
+ /**
17336
+ * 音轨和声道数字,说明:
17337
+ 当:SelectType值为track,此值为整数类型,例如:1;
17338
+ 当:SelectType值为track_channel,此值为小数类型,例如:1.0;
17339
+ 默认值:1.0
17340
+ 注意:整数部分代表音轨序号,以小数部分代表声道。音轨序号即为音轨的stream index,支持输入0和正整数。小数部分最多支持2位小数,并且仅支持0-63,但是如果Codec为aac/eac3/ac3时,小数部分仅支持0-15。例如:对于stream index为1的音轨,1.0代表这个音轨的第1个声道,1.1代表这个音轨的第2个声道。
17341
+ 注意:此字段可能返回 null,表示取不到有效值。
17342
+ */
17343
+ TrackNum?: string;
17344
+ /**
17345
+ * 声道音量大小,说明:
17346
+ 当:AudioChannel的值为1时,此数组长度为1,例如:[6];
17347
+ 当:AudioChannel的值为2时,此数组长度为2,例如:[0,6];
17348
+ 当:AudioChannel的值为6时,此数组长度大于2小于16,例如:[-60,0,0,6]。
17349
+ 此值数组值取值范围:[-60, 6],其中-60代表静音、0代表保持原音量,6表示原音量增加一倍,默认值为-60。
17350
+ 注意:支持3位小数。
17351
+
17352
+ 注意:此字段可能返回 null,表示取不到有效值。
17353
+ */
17354
+ ChannelVolume?: Array<number>;
17355
+ }
17306
17356
  /**
17307
17357
  * 媒体质检模板详情
17308
17358
  */