tencentcloud-sdk-nodejs-mps 4.1.146 → 4.1.147
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
|
@@ -10755,6 +10755,15 @@ export interface AiAnalysisResult {
|
|
|
10755
10755
|
*/
|
|
10756
10756
|
VideoComprehensionTask?: AiAnalysisTaskVideoComprehensionResult;
|
|
10757
10757
|
}
|
|
10758
|
+
/**
|
|
10759
|
+
* 媒体处理任务中的数字水印参数类型
|
|
10760
|
+
*/
|
|
10761
|
+
export interface BlindWatermarkInput {
|
|
10762
|
+
/**
|
|
10763
|
+
* 数字水印模板ID
|
|
10764
|
+
*/
|
|
10765
|
+
Definition: number;
|
|
10766
|
+
}
|
|
10758
10767
|
/**
|
|
10759
10768
|
* 智能字幕翻译的输入。
|
|
10760
10769
|
*/
|
|
@@ -10900,6 +10909,14 @@ export interface ProcessImageRequest {
|
|
|
10900
10909
|
如果不填,则默认为相对路径:{inputName}.{format}。
|
|
10901
10910
|
*/
|
|
10902
10911
|
OutputPath?: string;
|
|
10912
|
+
/**
|
|
10913
|
+
* 图片处理模板唯一标识。
|
|
10914
|
+
*/
|
|
10915
|
+
Definition?: number;
|
|
10916
|
+
/**
|
|
10917
|
+
* 资源ID,需要保证对应资源是开启状态。默认为帐号主资源ID。
|
|
10918
|
+
*/
|
|
10919
|
+
ResourceId?: string;
|
|
10903
10920
|
/**
|
|
10904
10921
|
* 图片处理参数。
|
|
10905
10922
|
*/
|
|
@@ -12995,6 +13012,11 @@ export interface TranscodeTaskInput {
|
|
|
12995
13012
|
* 水印列表,支持多张图片或文字水印,最大可支持 10 张。
|
|
12996
13013
|
*/
|
|
12997
13014
|
WatermarkSet?: Array<WatermarkInput>;
|
|
13015
|
+
/**
|
|
13016
|
+
* 数字水印参数。
|
|
13017
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13018
|
+
*/
|
|
13019
|
+
BlindWatermark?: BlindWatermarkInput;
|
|
12998
13020
|
/**
|
|
12999
13021
|
* 马赛克列表,最大可支持 10 张。
|
|
13000
13022
|
*/
|
|
@@ -14758,6 +14780,11 @@ export interface AdaptiveDynamicStreamingTaskInput {
|
|
|
14758
14780
|
* 水印列表,支持多张图片或文字水印,最大可支持 10 张。
|
|
14759
14781
|
*/
|
|
14760
14782
|
WatermarkSet?: Array<WatermarkInput>;
|
|
14783
|
+
/**
|
|
14784
|
+
* 数字水印参数
|
|
14785
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14786
|
+
*/
|
|
14787
|
+
BlindWatermark?: BlindWatermarkInput;
|
|
14761
14788
|
/**
|
|
14762
14789
|
* 转自适应码流后文件的目标存储,不填则继承上层的 OutputStorage 值。
|
|
14763
14790
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -15855,18 +15882,22 @@ export interface ImageAreaBoxInfo {
|
|
|
15855
15882
|
*/
|
|
15856
15883
|
Type?: string;
|
|
15857
15884
|
/**
|
|
15858
|
-
* 图片框选区域坐标 (像素级),[x1, y1, x2, y2]
|
|
15885
|
+
* 图片框选区域坐标 (像素级),[x1, y1, x2, y2],即左上角坐标、右下角坐标。注意:该字段最大值为4096。
|
|
15859
15886
|
示例值:[101, 85, 111, 95]
|
|
15860
15887
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
15861
15888
|
*/
|
|
15862
15889
|
AreaCoordSet?: Array<number | bigint>;
|
|
15863
15890
|
/**
|
|
15864
|
-
* 图片框选区域坐标,[x1, y1, x2, y2],即左上角坐标、右下角坐标, 当AreaCoordSet
|
|
15891
|
+
* 图片框选区域坐标,[x1, y1, x2, y2],即左上角坐标、右下角坐标, 当AreaCoordSet未指定时生效。当表示像素时,该字段最大值为4096。
|
|
15865
15892
|
- [0.1, 0.1, 0.3, 0.3] : 表示比例 (数值小于1)
|
|
15866
15893
|
- [50, 50, 350, 280] : 表示像素 (数值大于等于1)
|
|
15867
15894
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
15868
15895
|
*/
|
|
15869
15896
|
BoundingBox?: Array<number>;
|
|
15897
|
+
/**
|
|
15898
|
+
* BoundingBox字段单位。设置为0时,按照该字段规则自动选择单位;设置为1时,单位为比例;设置为2时,单位为像素。
|
|
15899
|
+
*/
|
|
15900
|
+
BoundingBoxUnitType?: number;
|
|
15870
15901
|
}
|
|
15871
15902
|
/**
|
|
15872
15903
|
* 直播流 AI 审核结果
|