tencentcloud-sdk-nodejs-vod 4.1.235 → 4.1.236
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
|
@@ -8735,7 +8735,7 @@ export interface AigcAudioTaskOutput {
|
|
|
8735
8735
|
*/
|
|
8736
8736
|
export interface AigcVideoTaskInputFileInfo {
|
|
8737
8737
|
/**
|
|
8738
|
-
* <p>输入的视频文件类型。取值有: <li>File:点播媒体文件;</li> <li>Url:可访问的 Url;</li></p>
|
|
8738
|
+
* <p>输入的视频文件类型。取值有: <li>File:点播媒体文件;</li> <li>Url:可访问的 Url;</li> <li>Base64:图片或视频转换的Base64字符串;</li></p>
|
|
8739
8739
|
*/
|
|
8740
8740
|
Type?: string;
|
|
8741
8741
|
/**
|
|
@@ -8750,6 +8750,10 @@ export interface AigcVideoTaskInputFileInfo {
|
|
|
8750
8750
|
* <p>可访问的文件 URL。当 Type 取值为 Url 时,本参数有效。<br>说明:</p><ol><li>推荐使用小于10M的图片;</li><li>图片格式的取值为:jpeg,jpg, png。</li></ol>
|
|
8751
8751
|
*/
|
|
8752
8752
|
Url?: string;
|
|
8753
|
+
/**
|
|
8754
|
+
* <p>可访问的文件 Base64。当 Type 取值为 Base64 时,本参数有效。说明:</p><ol><li>所有文件的文件大小总和不能超过7MB,避免转为 Base64 后超出云API的10MB包大小上限;</li><li>图片格式应为:jpeg,jpg, png, webp。</li><li>视频格式应为:mp4, mov, avi。</li><li>不要有data:image/jpeg;base64,之类的前缀。</li></ol>
|
|
8755
|
+
*/
|
|
8756
|
+
Base64?: string;
|
|
8753
8757
|
/**
|
|
8754
8758
|
* <p>参考类型,GV、Kling、PixVerse模型适用。<br>注意:<br>当使用 GV 模型时,可作为参考方式,可选值:asset 表示素材、style 表示风格;<br>当使用 Kling 模型以及 Category 为 Video 时,可区分参考视频类型,feature 表示特征参考视频,base 表示待编辑视频;<br>当使用 PixVerse 模型时,可用于多图(主体)参考生模式,可选值:subject 表示主体、background 表示背景;</p>
|
|
8755
8759
|
*/
|
|
@@ -10746,6 +10750,10 @@ export interface CreateAigcVideoTaskRequest {
|
|
|
10746
10750
|
* <p>场景类型。取值如下:</p><li>当 ModelName 为 Kling 时: motion_control 表示动作控制; avatar_i2v 表示数字人; lip_sync 表示对口型;</li><li>当 ModelName 为 Vidu 时: template_effect 表示特效模板;</li><li>其他 ModelName 暂不支持。</li>
|
|
10747
10751
|
*/
|
|
10748
10752
|
SceneType?: string;
|
|
10753
|
+
/**
|
|
10754
|
+
* <p><a href="https://cloud.tencent.com/document/product/266/33475#.E4.BB.BB.E5.8A.A1.E6.B5.81">任务流名称</a>,在需要对生成的新视频执行任务流时填写。</p>
|
|
10755
|
+
*/
|
|
10756
|
+
Procedure?: string;
|
|
10749
10757
|
/**
|
|
10750
10758
|
* <p>模型随机种子。</p>
|
|
10751
10759
|
*/
|
|
@@ -14877,9 +14885,13 @@ export interface MPSSmartEraseSubtitleConfig {
|
|
|
14877
14885
|
*/
|
|
14878
14886
|
export interface AigcVideoTaskOutput {
|
|
14879
14887
|
/**
|
|
14880
|
-
* AIGC
|
|
14888
|
+
* <p>AIGC 生视频任务的输出文件信息。</p>
|
|
14881
14889
|
*/
|
|
14882
14890
|
FileInfos?: Array<AigcVideoTaskOutputFileInfo>;
|
|
14891
|
+
/**
|
|
14892
|
+
* <p>任务类型为 Procedure 的任务 ID。若发起<a href="https://cloud.tencent.com/document/product/266/126239">创建 AIGC 生视频任务</a>时指定了任务流模板(Procedure),当该任务流模板指定了 MediaProcessTask、AiAnalysisTask、AiRecognitionTask 中的一个或多个时发起该任务。</p>
|
|
14893
|
+
*/
|
|
14894
|
+
ProcedureTaskIds?: Array<string>;
|
|
14883
14895
|
}
|
|
14884
14896
|
/**
|
|
14885
14897
|
* DeletePersonSample返回参数结构体
|
|
@@ -16776,27 +16788,29 @@ export interface PoliticalImgReviewTemplateInfoForUpdate {
|
|
|
16776
16788
|
*/
|
|
16777
16789
|
export interface AigcImageTaskInputFileInfo {
|
|
16778
16790
|
/**
|
|
16779
|
-
*
|
|
16791
|
+
* <p>输入的文件类型。取值有: <li>File:点播媒体文件;</li> <li>Url:可访问的 Url;</li> <li>Base64:图片或视频转换的Base64字符串;</li></p>
|
|
16780
16792
|
*/
|
|
16781
16793
|
Type?: string;
|
|
16782
16794
|
/**
|
|
16783
|
-
*
|
|
16784
|
-
说明:
|
|
16785
|
-
1. 推荐使用小于7M的图片;
|
|
16786
|
-
2. 图片格式的取值为:jpeg,jpg, png, webp。
|
|
16795
|
+
* <p>图片文件的媒体文件 ID,即该文件在云点播上的全局唯一标识符,在上传成功后由云点播后台分配。可以在 <a href="/document/product/266/7830">视频上传完成事件通知</a> 或 <a href="https://console.cloud.tencent.com/vod/media">云点播控制台</a> 获取该字段。当 Type 取值为 File 时,本参数有效。<br>说明:</p><ol><li>推荐使用小于7M的图片;</li><li>图片格式的取值为:jpeg,jpg, png, webp。</li></ol>
|
|
16787
16796
|
*/
|
|
16788
16797
|
FileId?: string;
|
|
16789
16798
|
/**
|
|
16790
|
-
*
|
|
16791
|
-
说明:
|
|
16792
|
-
1. 推荐使用小于7M的图片;
|
|
16793
|
-
2. 图片格式的取值为:jpeg,jpg, png, webp。
|
|
16799
|
+
* <p>可访问的文件 URL。当 Type 取值为 Url 时,本参数有效。<br>说明:</p><ol><li>推荐使用小于7M的图片;</li><li>图片格式的取值为:jpeg,jpg, png, webp。</li></ol>
|
|
16794
16800
|
*/
|
|
16795
16801
|
Url?: string;
|
|
16796
16802
|
/**
|
|
16797
|
-
*
|
|
16803
|
+
* <p>可访问的文件 Base64。当 Type 取值为 Base64 时,本参数有效。说明:</p><ol><li>所有文件的文件大小总和不能超过 7 MB,避免转为 Base64 后超出云 API 的 10 MB包大小上限;</li><li>图片格式应为:jpeg,jpg, png, webp;</li><li>不要有data:image/jpeg;base64,之类的前缀。</li></ol>
|
|
16804
|
+
*/
|
|
16805
|
+
Base64?: string;
|
|
16806
|
+
/**
|
|
16807
|
+
* <p>输入图片的描述信息,用于帮助模型理解图片。仅GEM 2.5、GEM 3.0 有效。</p>
|
|
16798
16808
|
*/
|
|
16799
16809
|
Text?: string;
|
|
16810
|
+
/**
|
|
16811
|
+
* <p><strong>仅当 ModelName 为 OG 时有效</strong>。图片类型。</p><p>枚举值:</p><ul><li>mask: 图片蒙版。</li></ul>
|
|
16812
|
+
*/
|
|
16813
|
+
ReferenceType?: string;
|
|
16800
16814
|
}
|
|
16801
16815
|
/**
|
|
16802
16816
|
* 用户自定义文本音视频审核任务控制参数
|