微软/edge文本转语音API接口

微软TTS API 接口:

类型:websocket

{
    url: "wss://eastus.tts.speech.microsoft.com/cognitiveservices/websocket/v1",
    query: {
        Authorization: "xxxxx",
        X-ConnectionId:"xxxxx"
    }
}

edge TTS API 接口:

类型:websocket

{
    url: "wss://speech.platform.bing.com/consumer/speech/synthesize/readaloud/edge/v1",
    query: {
        TrustedClientToken: "xxxxx"
    }
}

猜你喜欢

转载自blog.csdn.net/VBnull/article/details/128367903