tencentcloud-sdk-nodejs-vclm 4.1.174 → 4.1.180
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
|
@@ -1013,6 +1013,10 @@ export interface SubmitVideoEditJobRequest {
|
|
|
1013
1013
|
* @deprecated
|
|
1014
1014
|
*/
|
|
1015
1015
|
Image?: Image;
|
|
1016
|
+
/**
|
|
1017
|
+
* 扩展字段。
|
|
1018
|
+
*/
|
|
1019
|
+
VideoEditParam?: VideoEditParam;
|
|
1016
1020
|
/**
|
|
1017
1021
|
* 为生成视频添加标识的开关,默认为1。传0 需前往 [控制台](https://console.cloud.tencent.com/vtc/setting) 申请开启显式标识自主完成后方可生效。
|
|
1018
1022
|
1:添加标识;
|
|
@@ -1100,3 +1104,13 @@ export interface DescribeHunyuanToVideoJobResponse {
|
|
|
1100
1104
|
*/
|
|
1101
1105
|
RequestId?: string;
|
|
1102
1106
|
}
|
|
1107
|
+
/**
|
|
1108
|
+
* 视频编辑参数
|
|
1109
|
+
*/
|
|
1110
|
+
export interface VideoEditParam {
|
|
1111
|
+
/**
|
|
1112
|
+
* 魔法词,针对特定场景生效。不同场景传不同的值。默认不传。
|
|
1113
|
+
- 换人场景:1
|
|
1114
|
+
*/
|
|
1115
|
+
Magic?: string;
|
|
1116
|
+
}
|