收藏
回答

腾讯云智能语音,语音合成一直报错"InvalidParameter"?

"InvalidParameter"

requestId: "62bd51409b80a45b6a53c5b0"

我看了下好像也不缺参数吧,不知道有没有大佬看一下

回答关注问题邀请回答
收藏

3 个回答

  • busy lift
    busy lift
    2023-06-12
    let appid = '1112223334'; // 这是错误
    
    let appid = 1112223334; // 这是对的
    

    这样写后边数字不要加引号;

    plugin.setQCloudSecret(parseInt(appid), secretid, secretkey)
    或者这样也可以
    


    2023-06-12
    有用
    回复
  • xx
    xx
    2023-04-05

    我也有这个问题,往上去搜也没搜到,代码用的官方示例,配置后id和key后调用都没用

    2023-04-05
    有用
    回复
  • 涛声依旧
    涛声依旧
    2022-06-30
    var app = getApp()
    
        let appid = ****
        let secretid = '***'
        let secretkey = '****'
        let openConsole = true
        let plugin = requirePlugin("QCloudAIVoice")
        plugin.setQCloudSecret(appid, secretid, secretkey)//连接上腾讯云
        const text = "腾讯云基于业界领先技术构建的语音合成系统,具备合成速度快、合成拟真度高、语音自然流畅等特点,能够应用于多种使用场景,让设备和应用轻松发声。"
    const innerAudioContext = wx.createInnerAudioContext();
    //调用播放能力
    Page({
        hechengbobao(){
    //验证腾讯云的
    
    
        plugin.textToSpeech({
                content: text,
                speed0,
                volume10,
                voiceType0,
                language1,
                projectId0,
                sampleRate16000,
    
                successfunction(data{
                        
                        let url = data.result.filePath;
                        console.log("TTS success", url)
                        if(url && url.length > 0){
                                innerAudioContext.autoplay = true;
                                innerAudioContext.src = url;
                                innerAudioContext.onPlay(() => {
                                });
                                innerAudioContext.onError((res) => {
                                    console.log(res.errMsg)
                                });
                        }
                },
                failfunction(error){
                    
                    console.log(error);
                }
            })
    
        }
    })
    
    


    2022-06-30
    有用
    回复
登录 后发表内容