12345678910111213141516171819202122232425262728 |
- package model
- type SpeakerInfo struct {
- Name string `yaml:"name"`
- Ip string `yaml:"ip"`
- Port string `yaml:"port"`
- Branch byte `yaml:"branch"`
- }
- type PlayReq struct {
- Url string //要播放的⽹络⾳频 http/https/rtsp等⾳频地址
- Text string //要播放的⽂本内容
- Vcn string // 发⾳⼈ xiaofeng xiaoyan
- Speed int //发⾳速度 0-100 默认50
- Volume int //⾳量 0-100 默认50
- Rdn string //数字发⾳ 0 数值优先, 1 完全数值, 2 完全字符串, 3 字符串优先 默认2
- Rcn string //数字1 的中⽂发⾳ 0:表示发⾳为yao 1:表示发⾳为yi 默认0
- Reg byte //英⽂发⾳ 0:⾃动识别英语单词; 1:逐个字⺟发⾳
- Sync bool //true: 同步模式,语⾳播放完毕后再响应; false:即时响应(不等待播放完成)
- Queue bool //true: 队列模式,如果当前有语⾳在播放,则加到队列排队播放
- Loop LoopInfo
- }
- type LoopInfo struct {
- Duration int // 循环(重复)播放时⻓(秒)选填
- Times int // 循环(重复)播放次数(次)选填
- Gap int // 循环(重复)播放中的间歇时间(秒)
- }
|