tencentcloud-sdk-nodejs-mps 4.1.134 → 4.1.136

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.134",
3
+ "version": "4.1.136",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -1104,8 +1104,13 @@ export interface ModifyOutputInfo {
1104
1104
  OutputType?: string;
1105
1105
  /**
1106
1106
  * 对于含有多个音/视频轨的流,可以指定需要使用的轨道
1107
+ * @deprecated
1107
1108
  */
1108
1109
  PidSelector?: PidSelector;
1110
+ /**
1111
+ * 对于含有多个音/视频轨的流,可以指定需要使用的轨道
1112
+ */
1113
+ StreamSelector?: StreamSelector;
1109
1114
  }
1110
1115
  /**
1111
1116
  * 点播文件指定时间点截图信息
@@ -6761,9 +6766,14 @@ export interface CreateOutputInfo {
6761
6766
  */
6762
6767
  RISTSettings?: CreateOutputRistSettings;
6763
6768
  /**
6764
- * 对于含有多个音/视频轨的流,可以指定需要使用的轨道
6769
+ * 对于含有多个音/视频轨的流,可以指定需要使用的轨道。PidSelector 与 TrackSelector 只能存在一个
6770
+ * @deprecated
6765
6771
  */
6766
6772
  PidSelector?: PidSelector;
6773
+ /**
6774
+ * 对于含有多个音/视频轨的流,可以指定需要使用的轨道。PidSelector 与 TrackSelector 只能存在一个
6775
+ */
6776
+ StreamSelector?: StreamSelector;
6767
6777
  }
6768
6778
  /**
6769
6779
  * 媒体处理输出对象信息。
@@ -10933,12 +10943,17 @@ export interface DescribeOutput {
10933
10943
  RISTSettings?: DescribeOutputRISTSettings;
10934
10944
  /**
10935
10945
  * 对于含有多个音/视频轨的流,可以指定需要使用的轨道
10946
+ * @deprecated
10936
10947
  */
10937
10948
  PidSelector?: PidSelector;
10938
10949
  /**
10939
10950
  * 输出模块配置,相关的URL,包括提供的拉流地址,或者配置的输出到第三方的转推地址
10940
10951
  */
10941
10952
  StreamUrls?: Array<StreamUrlDetail>;
10953
+ /**
10954
+ * 对于含有多个音/视频轨的流,可以指定需要使用的轨道
10955
+ */
10956
+ StreamSelector?: StreamSelector;
10942
10957
  }
10943
10958
  /**
10944
10959
  * 直播 AI 内容审核声音鉴黄结果
@@ -13104,6 +13119,19 @@ export interface CreateLiveRecordTemplateResponse {
13104
13119
  */
13105
13120
  RequestId?: string;
13106
13121
  }
13122
+ /**
13123
+ * 音视频轨道选择
13124
+ */
13125
+ export interface TrackSelector {
13126
+ /**
13127
+ * 视频轨道序号,从1开始.
13128
+ */
13129
+ VideoIndex?: Array<number | bigint>;
13130
+ /**
13131
+ * 音频轨道序号,从1开始.
13132
+ */
13133
+ AudioIndex?: Array<number | bigint>;
13134
+ }
13107
13135
  /**
13108
13136
  * 编排任务输出
13109
13137
  */
@@ -17532,7 +17560,6 @@ export interface DescribeImageTaskDetailResponse {
17532
17560
  /**
17533
17561
  * 任务类型,目前取值有:
17534
17562
  <li>WorkflowTask:工作流处理任务。</li>
17535
-
17536
17563
  注意:此字段可能返回 null,表示取不到有效值。
17537
17564
  */
17538
17565
  TaskType?: string;
@@ -17544,6 +17571,18 @@ export interface DescribeImageTaskDetailResponse {
17544
17571
  注意:此字段可能返回 null,表示取不到有效值。
17545
17572
  */
17546
17573
  Status?: string;
17574
+ /**
17575
+ * 任务失败时的错误码。
17576
+ */
17577
+ ErrCode?: number;
17578
+ /**
17579
+ * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
17580
+ */
17581
+ ErrMsg?: string;
17582
+ /**
17583
+ * 任务异常Message。
17584
+ */
17585
+ Message?: string;
17547
17586
  /**
17548
17587
  * 图片处理任务的执行状态与结果。
17549
17588
  注意:此字段可能返回 null,表示取不到有效值。
@@ -19297,6 +19336,23 @@ export interface RegionInfo {
19297
19336
  */
19298
19337
  Name?: string;
19299
19338
  }
19339
+ /**
19340
+ * 选择指定的音轨或者视频输出
19341
+ */
19342
+ export interface StreamSelector {
19343
+ /**
19344
+ * 选择类型: PID | TRACK
19345
+ */
19346
+ SelectorType?: string;
19347
+ /**
19348
+ * 根据 PID 配置选择器
19349
+ */
19350
+ PidSelector?: PidSelector;
19351
+ /**
19352
+ * 根据 Track 配置选择器
19353
+ */
19354
+ TrackSelector?: TrackSelector;
19355
+ }
19300
19356
  /**
19301
19357
  * CreateStreamLinkInput返回参数结构体
19302
19358
  */