tencentcloud-sdk-nodejs-mps 4.1.264 → 4.1.266
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
|
@@ -10161,6 +10161,10 @@ export interface CreateAigcVideoTaskRequest {
|
|
|
10161
10161
|
* <p>目前仅 Kling O1、Kling 3.0-Omni、Vidu q2-pro、H2 1.0 支持参考视频信息传入。</p><ol><li>Kling O1、3.0-Omni 可作为特征参考视频,也可作为待编辑视频,默认为待编辑视频;可选择性保留视频原声。</li><li>Vidu q2-pro 支持视频参考。</li><li>H2 1.0 支持视频参考。</li></ol>
|
|
10162
10162
|
*/
|
|
10163
10163
|
VideoInfos?: Array<AigcVideoReferenceVideoInfo>;
|
|
10164
|
+
/**
|
|
10165
|
+
* <p>部分模型支持参考音频传入,使用URL传入。</p>
|
|
10166
|
+
*/
|
|
10167
|
+
AudioInfos?: Array<AigcVideoReferenceAudioInfo>;
|
|
10164
10168
|
/**
|
|
10165
10169
|
* <p>生成视频的时长。<br>注意:</p><ol><li>Kling,默认:5 秒。<ul><li>O1 支持 3-10 秒。</li><li>3.0-Omni 支持 3-15 秒,当使用视频参考时只支持 3-10 秒。</li><li>3.0 支持 3-15 秒。</li><li>其他版本支持 5、10 秒。</li></ul></li><li>Hailuo 的 std 模式可支持 6、10 秒,其他仅 6 秒。默认:6 秒。</li><li>Vidu,默认:5 秒。<ul><li>q3-pro、q3-turbo、q3、q3-mix 支持 3-16 秒。</li><li>q2-pro、q2-turbo、q2 支持 1-10 秒。 </li></ul></li><li>PixVerse,默认:5 秒。<ul><li>v5.6 支持 5、8、10 秒。</li><li>v6、c1 支持 1-15 秒。</li></ul></li><li>H2,支持 3-15 秒,默认 :5 秒。</li></ol>
|
|
10166
10170
|
*/
|
|
@@ -19137,6 +19141,15 @@ export interface StreamUrlDetail {
|
|
|
19137
19141
|
*/
|
|
19138
19142
|
Type?: string;
|
|
19139
19143
|
}
|
|
19144
|
+
/**
|
|
19145
|
+
* 参考音频信息。
|
|
19146
|
+
*/
|
|
19147
|
+
export interface AigcVideoReferenceAudioInfo {
|
|
19148
|
+
/**
|
|
19149
|
+
* <p>参考音频URL信息。需外网可访问。</p>
|
|
19150
|
+
*/
|
|
19151
|
+
AudioUrl?: string;
|
|
19152
|
+
}
|
|
19140
19153
|
/**
|
|
19141
19154
|
* DeleteProcessImageTemplate返回参数结构体
|
|
19142
19155
|
*/
|