tencentcloud-sdk-nodejs-trtc 4.1.157 → 4.1.159
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
|
@@ -527,7 +527,7 @@ export interface VoiceCloneRequest {
|
|
|
527
527
|
*/
|
|
528
528
|
VoiceName: string;
|
|
529
529
|
/**
|
|
530
|
-
* 声音克隆的参考音频,必须为16k单声道的wav的base64字符串, 长度在
|
|
530
|
+
* 声音克隆的参考音频,必须为16k单声道的wav的base64字符串, 长度在10秒~180秒之间
|
|
531
531
|
*/
|
|
532
532
|
PromptAudio: string;
|
|
533
533
|
/**
|
|
@@ -2679,6 +2679,14 @@ export interface StartStreamIngestRequest {
|
|
|
2679
2679
|
* 音量,取值范围[0, 100],默认100,表示原音量。
|
|
2680
2680
|
*/
|
|
2681
2681
|
Volume?: number;
|
|
2682
|
+
/**
|
|
2683
|
+
* 开启播放进度回调, 默认false,当开启后,播放进度会通过trtc custom data 回调给播放端
|
|
2684
|
+
*/
|
|
2685
|
+
EnableProgress?: boolean;
|
|
2686
|
+
/**
|
|
2687
|
+
* 播放倍速,默认1.0,可取[0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0]
|
|
2688
|
+
*/
|
|
2689
|
+
Tempo?: number;
|
|
2682
2690
|
}
|
|
2683
2691
|
/**
|
|
2684
2692
|
* UpdateVoicePrint返回参数结构体
|
|
@@ -4610,6 +4618,14 @@ export interface UpdateStreamIngestRequest {
|
|
|
4610
4618
|
* 是否暂停,默认false表示不暂停。暂停期间任务仍在进行中仍会计费,暂停超过12小时会自动销毁任务, 建议主动调用停止任务接口。
|
|
4611
4619
|
*/
|
|
4612
4620
|
IsPause?: boolean;
|
|
4621
|
+
/**
|
|
4622
|
+
* 是否开启播放进度回调, 默认false,当开启后,播放进度会通过trtc custom data 回调给播放端
|
|
4623
|
+
*/
|
|
4624
|
+
EnableProgress?: boolean;
|
|
4625
|
+
/**
|
|
4626
|
+
* 播放倍速,默认1.0,可取[0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0]
|
|
4627
|
+
*/
|
|
4628
|
+
Tempo?: number;
|
|
4613
4629
|
}
|
|
4614
4630
|
/**
|
|
4615
4631
|
* TextToSpeechSSE请求参数结构体
|