语音交互,包括:(1)对一分钟内的短语音进行识别,适用于较短的语音识别场景。(2)实时语音识别服务,对长时间的语音数据流进行识别,适用于会议演讲、视频直播等长时间不间断识别的场景。(3)较长录音文件识别(4)文本转普通话语音
API文档
语音合成 录音文件识别结果查询 提交录音文件识别请求 实时语音识别 短语音识别
语音合成
调用地址:https://service-3b04kbpj-1255468759.ap-shanghai.apigateway.myqcloud.com/release/speechSynthesis
请求方式:GET
返回类型:JSON
API调用: API调用说明(secret_id & secret_key)
请求参数(Headers)
名称 | 类型 | 是否必须 | 描述 |
---|---|---|---|
暂无数据 |
请求参数(Query)
名称 | 类型 | 是否必须 | 描述 |
---|---|---|---|
format | string | 否 | 默认wav (1)wav (2)mp3 (3)pcm |
txt | string | 是 | 需合成语音的文字内容 |
请求参数(Body)
名称 | 类型 | 是否必须 | 描述 |
---|---|---|---|
暂无数据 |
请求示例
curl go java javascript php python c#
curl -v -X GET https://service-3b04kbpj-1255468759.ap-shanghai.apigateway.myqcloud.com/release/speechSynthesis ?format=&txt=-H 'Host:service-3b04kbpj-1255468759.ap-shanghai.apigateway.myqcloud.com' -H 'Source:source' -H 'Date:Mon, 19 Mar 2018 12:08:40 GMT' -H 'Authorization:hmac id = "AKIDi6qE41WgJ9w8h4h9zq68Vq24d1beIuN0qIwU", algorithm = "hmac-sha1", headers = "date source", signature = yMCxXNytW5nvVGNZ8aBtRxmiLJ4=' -H 'X-Requested-With:XMLHttpRequest' //请用云市场分配给您的密钥计算签名并放入请求头,Date为当前的GMT时间
package mainimport ( "crypto/hmac" "crypto/sha1" "encoding/base64" "fmt" "io" "io/ioutil" "net/http" gourl "net/url" "strings" "time")func calcAuthorization(source string, secretId string, secretKey string) (auth string, datetime string, err error) { timeLocation, _ := time.LoadLocation("Etc/GMT") datetime = time.Now().In(timeLocation).Format("Mon, 02 Jan 2006 15:04:05 GMT") signStr := fmt.Sprintf("x-date: %snx-source: %s", datetime, source) // hmac-sha1 mac := hmac.New(sha1.New, []byte(secretKey)) mac.Write([]byte(signStr)) sign := base64.StdEncoding.EncodeToString(mac.Sum(nil)) auth = fmt.Sprintf("hmac id="%s""
声明:本站部分文章及图片源自用户投稿,如本站任何资料有侵权请您尽早请联系jinwei@zod.com.cn进行处理,非常感谢!