tencentcloud-sdk-nodejs-mps 4.1.18 → 4.1.20

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.18",
3
+ "version": "4.1.20",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -670,6 +670,23 @@ export interface AiReviewTaskProhibitedOcrResult {
670
670
  */
671
671
  Output?: AiReviewProhibitedOcrTaskOutput;
672
672
  }
673
+ /**
674
+ * 描述 URL 的完整信息
675
+ */
676
+ export interface StreamUrlDetail {
677
+ /**
678
+ * 会描述运营商信息等
679
+ */
680
+ Label?: string;
681
+ /**
682
+ * URL
683
+ */
684
+ Url?: string;
685
+ /**
686
+ * Playback: 拉流播放地址; RelayDestination:转推目的地址;SourceCaptureUrl:回源拉流地址;IngestEndpoint:推流地址
687
+ */
688
+ Type?: string;
689
+ }
673
690
  /**
674
691
  * 语音全文识别结果。
675
692
  */
@@ -936,6 +953,10 @@ export interface ModifyOutputInfo {
936
953
  * 输出的转推协议,支持SRT|RTP|RTMP|RTMP_PULL|RTSP_PULL|RIST。
937
954
  */
938
955
  Protocol: string;
956
+ /**
957
+ * 输出模块类型,包括Pinpoint(单点输出,最多支持四路并发输出);MultiMesh(多路输出,支持大于四路的并发输出,目前可以达到200路)。默认类型为 Pinpoint 输出。对于单个 Flow 一个区域最多只能有一个 MultiMesh 输出。
958
+ */
959
+ OutputKind?: string;
939
960
  /**
940
961
  * 转推SRT的配置。
941
962
  */
@@ -2517,7 +2538,7 @@ export interface AudioTemplateInfo {
2517
2538
  */
2518
2539
  Bitrate: number;
2519
2540
  /**
2520
- * 音频流的采样率,不同编码标准支持的采样率选项不同。详细参考[音频采样率支持范围文档]https://cloud.tencent.com/document/product/862/77166#f3b039f1-d817-4a96-b4e4-90132d31cd53
2541
+ * 音频流的采样率,不同编码标准支持的采样率选项不同。详细参考[音频采样率支持范围文档](https://cloud.tencent.com/document/product/862/77166#f3b039f1-d817-4a96-b4e4-90132d31cd53)
2521
2542
  单位:Hz
2522
2543
  注意:请确保源音频流的采样率在上述选项范围内,否则可能导致转码失败!
2523
2544
  */
@@ -5999,6 +6020,14 @@ export interface CreateOutputInfo {
5999
6020
  * 输出地区。
6000
6021
  */
6001
6022
  OutputRegion: string;
6023
+ /**
6024
+ * 输出类型:Internet/TencentCSS
6025
+ */
6026
+ OutputType?: string;
6027
+ /**
6028
+ * 输出模块类型,包括Pinpoint(单点输出,最多支持四路并发输出);MultiMesh(多路输出,支持大于四路的并发输出,目前可以达到200路)。默认类型为 Pinpoint 输出。对于单个 Flow 一个区域最多只能有一个 MultiMesh 输出
6029
+ */
6030
+ OutputKind?: string;
6002
6031
  /**
6003
6032
  * 输出的SRT的配置。
6004
6033
  */
@@ -6028,10 +6057,6 @@ export interface CreateOutputInfo {
6028
6057
  * 可用区,output最多只支持输入一个可用区。
6029
6058
  */
6030
6059
  Zones?: Array<string>;
6031
- /**
6032
- * 输出类型:Internet/TencentCSS/StreamLive
6033
- */
6034
- OutputType?: string;
6035
6060
  /**
6036
6061
  * 输出的RIST的配置。
6037
6062
  */
@@ -9127,6 +9152,10 @@ export interface DescribeInput {
9127
9152
  注意:此字段可能返回 null,表示取不到有效值。
9128
9153
  */
9129
9154
  RISTSettings?: DescribeInputRISTSettings;
9155
+ /**
9156
+ * 输入模块配置相关的URL信息,包含提供的推流地址,或者配置的第三方源流地址
9157
+ */
9158
+ StreamUrls?: Array<StreamUrlDetail>;
9130
9159
  }
9131
9160
  /**
9132
9161
  * DeleteTranscodeTemplate请求参数结构体
@@ -9639,6 +9668,10 @@ export interface DescribeOutput {
9639
9668
  * 输出类型。
9640
9669
  */
9641
9670
  OutputType?: string;
9671
+ /**
9672
+ * 输出模块类型,包括Pinpoint(单点输出,最多支持四路并发输出);MultiMesh(多路输出,支持大于四路的并发输出,目前可以达到200路)。默认类型为 Pinpoint 输出。对于单个 Flow 一个区域最多只能有一个 MultiMesh 输出。
9673
+ */
9674
+ OutputKind?: string;
9642
9675
  /**
9643
9676
  * 输出描述。
9644
9677
  注意:此字段可能返回 null,表示取不到有效值。
@@ -9715,6 +9748,10 @@ export interface DescribeOutput {
9715
9748
  * 对于含有多个音/视频轨的流,可以指定需要使用的轨道
9716
9749
  */
9717
9750
  PidSelector?: PidSelector;
9751
+ /**
9752
+ * 输出模块配置,相关的URL,包括提供的拉流地址,或者配置的输出到第三方的转推地址
9753
+ */
9754
+ StreamUrls?: Array<StreamUrlDetail>;
9718
9755
  }
9719
9756
  /**
9720
9757
  * 直播 AI 内容审核声音鉴黄结果