Skip to content

Commit

Permalink
完善tts
Browse files Browse the repository at this point in the history
  • Loading branch information
steve committed Nov 26, 2024
1 parent d894d02 commit 9dedf7b
Showing 1 changed file with 39 additions and 5 deletions.
44 changes: 39 additions & 5 deletions docs/制作源/rules-tts.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
# 自定义TTS

## 请求示例
## 请求处理

### GET/POST
### 表达式
| 参数 | 名称 | 说明 |
|:----------------|:-----|:-------------|
| `@{voiceType}` | 语音标志 | 角色的唯一标识 |
| `@{text}` | 文本内容 | 需要转换为语音的文字内容 |

### 请求示例

#### GET/POST请求
```javascript
// 请求地址
let url = 'https://www.baidu.com';

// 请求参数
let params = {
type: 'zh-linzhilin',
text: '你好,世界!'
type: '@{voiceType}',
text: '@{text}'
};

// 请求header
Expand Down Expand Up @@ -40,7 +48,33 @@ return {
};
```

### WebSocket
#### WebSocket
```javascript
// TODO
```

## 角色配置

### 参数

| 参数 | 名称 | 类型 | 默认值 | 说明 |
|:----------|:-----|:-------|:----|:-------------|
| voiceType | 语音标识 | String | - | 角色的唯一标识 |
| sex | 性别 | Number | 0 | 性别 0未知,1男,2女 |
| name | 名称 | String | - | 显示的名称 |

### 示例
```javascript
[
{
"voiceType" : "zh-zhangsan", // 语音标识
"sex" : 1, // 性别 0未知,1男,2女
"name" : "张三" // 名字
},
{
"voiceType" : "zh-erya", // 语音标识
"sex" : 2, // 性别 0未知,1男,2女
"name" : "二丫" // 名字
}
]
```

0 comments on commit 9dedf7b

Please sign in to comment.