tencentcloud-sdk-nodejs-mps 4.1.224 → 4.1.225
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
|
@@ -10378,6 +10378,10 @@ export interface DesignVoiceAsyncRequest {
|
|
|
10378
10378
|
* <p>音色描述</p>
|
|
10379
10379
|
*/
|
|
10380
10380
|
Prompt: string;
|
|
10381
|
+
/**
|
|
10382
|
+
* <p>音色属性</p>
|
|
10383
|
+
*/
|
|
10384
|
+
VoiceProfile?: VoiceProfile;
|
|
10381
10385
|
/**
|
|
10382
10386
|
* <p>扩展参数,json字符串</p>
|
|
10383
10387
|
*/
|
|
@@ -10829,10 +10833,18 @@ export interface SyncDubbingRequest {
|
|
|
10829
10833
|
* <p>克隆音频语言,默认中文。<br>当前支持语言同TextLang</p>
|
|
10830
10834
|
*/
|
|
10831
10835
|
AudioLang?: string;
|
|
10836
|
+
/**
|
|
10837
|
+
* <p>音色属性</p>
|
|
10838
|
+
*/
|
|
10839
|
+
VoiceProfile?: VoiceProfile;
|
|
10832
10840
|
/**
|
|
10833
10841
|
* <p>输出相关参数</p><p>可以指定输出形式等</p>
|
|
10834
10842
|
*/
|
|
10835
10843
|
Output?: SyncDubbingOutputOption;
|
|
10844
|
+
/**
|
|
10845
|
+
* <p>资源ID,需要保证对应资源是开启状态。默认为账号主资源ID。</p>
|
|
10846
|
+
*/
|
|
10847
|
+
ResourceId?: string;
|
|
10836
10848
|
/**
|
|
10837
10849
|
* <p>扩展参数,json字符串</p><p>synExt Object 语音合成扩展参数<br> -duration Float 合成音频时长,单位秒,示例:5.2<br> -sampleRate Integer 合成音频采样率,默认16000,支持[8000,16000,22050,32000,44100]<br> -pitch Integer 音调,默认0原音色输出,取值[-12, 12]<br>cloneExt Object 音色克隆扩展参数<br> -timeRanges Float[][] 指定克隆音频时间范围,默认[[0, 20]],示例[[5.2, 10], [45, 59.8]]</p>
|
|
10838
10850
|
*/
|
|
@@ -18914,6 +18926,35 @@ export interface ImageResizeConfig {
|
|
|
18914
18926
|
*/
|
|
18915
18927
|
ShortSide?: number;
|
|
18916
18928
|
}
|
|
18929
|
+
/**
|
|
18930
|
+
* 音色属性
|
|
18931
|
+
*/
|
|
18932
|
+
export interface VoiceProfile {
|
|
18933
|
+
/**
|
|
18934
|
+
* <p>音色名</p>
|
|
18935
|
+
*/
|
|
18936
|
+
Name?: string;
|
|
18937
|
+
/**
|
|
18938
|
+
* <p>音色描述</p>
|
|
18939
|
+
*/
|
|
18940
|
+
Description?: string;
|
|
18941
|
+
/**
|
|
18942
|
+
* <p>性别</p><p>枚举值:</p><ul><li>male: 男性</li><li>female: 女性</li><li>unknown: 未知</li></ul>
|
|
18943
|
+
*/
|
|
18944
|
+
Gender?: string;
|
|
18945
|
+
/**
|
|
18946
|
+
* <p>年龄</p><p>枚举值:</p><ul><li>child: 儿童</li><li>teenager: 少年</li><li>youth: 青年</li><li>middle_aged: 中年</li><li>senior: 老年</li><li>unknown: 未知</li></ul>
|
|
18947
|
+
*/
|
|
18948
|
+
Age?: string;
|
|
18949
|
+
/**
|
|
18950
|
+
* <p>标签</p>
|
|
18951
|
+
*/
|
|
18952
|
+
Labels?: Array<string>;
|
|
18953
|
+
/**
|
|
18954
|
+
* <p>使用场景</p>
|
|
18955
|
+
*/
|
|
18956
|
+
Scenes?: Array<string>;
|
|
18957
|
+
}
|
|
18917
18958
|
/**
|
|
18918
18959
|
* 字幕压制模块文字描边配置
|
|
18919
18960
|
*/
|
|
@@ -19695,6 +19736,10 @@ export interface VoiceInfo {
|
|
|
19695
19736
|
* <p>性别</p><p>枚举值:</p><ul><li>male: 男</li><li>famale: 女</li></ul>
|
|
19696
19737
|
*/
|
|
19697
19738
|
Gender?: string;
|
|
19739
|
+
/**
|
|
19740
|
+
* <p>年龄</p><p>枚举值:</p><ul><li>child: 儿童</li><li>teenager: 少年</li><li>youth: 青年</li><li>middle_aged: 中年</li><li>senior: 老年</li><li>unknown: 未知</li></ul>
|
|
19741
|
+
*/
|
|
19742
|
+
Age?: string;
|
|
19698
19743
|
/**
|
|
19699
19744
|
* <p>支持语种列表</p><p>如:en</p>
|
|
19700
19745
|
*/
|
|
@@ -22791,9 +22836,41 @@ export interface AddOnImageInput {
|
|
|
22791
22836
|
*/
|
|
22792
22837
|
export interface DescribeVoicesRequest {
|
|
22793
22838
|
/**
|
|
22794
|
-
* <p
|
|
22839
|
+
* <p>音色ID</p>
|
|
22840
|
+
*/
|
|
22841
|
+
VoiceId?: string;
|
|
22842
|
+
/**
|
|
22843
|
+
* <p>音色类别</p><p>枚举值:</p><ul><li>system: 系统音色</li><li>clone: 克隆音色</li><li>design: 设计音色</li><li>all: 所有音色(默认)</li></ul>
|
|
22795
22844
|
*/
|
|
22796
22845
|
VoiceType?: string;
|
|
22846
|
+
/**
|
|
22847
|
+
* <p>音色名</p>
|
|
22848
|
+
*/
|
|
22849
|
+
VoiceName?: string;
|
|
22850
|
+
/**
|
|
22851
|
+
* <p>音色描述</p>
|
|
22852
|
+
*/
|
|
22853
|
+
Description?: string;
|
|
22854
|
+
/**
|
|
22855
|
+
* <p>性别</p><p>枚举值:</p><ul><li>male: 男</li><li>female: 女</li><li>unknown: 未知</li></ul>
|
|
22856
|
+
*/
|
|
22857
|
+
Gender?: string;
|
|
22858
|
+
/**
|
|
22859
|
+
* <p>年龄</p><p>枚举值:</p><ul><li>child: 儿童</li><li>teenager: 少年</li><li>youth: 青年</li><li>middle_aged: 中年</li><li>senior: 老年</li><li>unknown: 未知</li></ul>
|
|
22860
|
+
*/
|
|
22861
|
+
Age?: string;
|
|
22862
|
+
/**
|
|
22863
|
+
* <p>语言</p>
|
|
22864
|
+
*/
|
|
22865
|
+
Languages?: Array<string>;
|
|
22866
|
+
/**
|
|
22867
|
+
* <p>标签</p>
|
|
22868
|
+
*/
|
|
22869
|
+
Labels?: Array<string>;
|
|
22870
|
+
/**
|
|
22871
|
+
* <p>场景</p>
|
|
22872
|
+
*/
|
|
22873
|
+
Scenes?: Array<string>;
|
|
22797
22874
|
/**
|
|
22798
22875
|
* <p>扩展参数,json字符串</p><p>其他筛选条件voiceName String 音色名,模糊匹配labels Array of String 标签,匹配包含这些标签的音色</p>
|
|
22799
22876
|
*/
|