@@ -31,18 +31,14 @@ interface VoiceEntry {
3131
3232// qwen-omni 系统音色
3333const OMNI_VOICES : VoiceEntry [ ] = [
34+ { voice : "Tina" , name : "甜妹" , desc : "甜美亲切" , lang : "中文/英文" } ,
3435 { voice : "Dylan" , name : "北京-晓东" , desc : "胡同少年" , lang : "中文/北京" } ,
3536 { voice : "Kiki" , name : "粤语-阿清" , desc : "甜美港妹" , lang : "中文/英文" } ,
3637 { voice : "Li" , name : "南京-老李" , desc : "南京大叔" , lang : "中文/英文" } ,
3738 { voice : "Sunny" , name : "四川-晴儿" , desc : "甜飒川妹" , lang : "中文" } ,
38- { voice : "Elias" , name : "墨讲师" , desc : "学术讲师女" , lang : "中文/英文" } ,
39- { voice : "Nofish" , name : "不吃鱼" , desc : "南方口音男" , lang : "中文/英文" } ,
4039 { voice : "Marcus" , name : "陕西-秦川" , desc : "陕北汉子" , lang : "中文/英文" } ,
4140 { voice : "Eric" , name : "四川-程川" , desc : "成都大哥" , lang : "中文/英文" } ,
42- { voice : "Jada" , name : "上海-阿珍" , desc : "沪上阿姐" , lang : "中文" } ,
4341 { voice : "Rocky" , name : "粤语-阿强" , desc : "幽默港仔" , lang : "中文/英文" } ,
44- { voice : "Cherry" , name : "芊悦" , desc : "阳光自然女" , lang : "中文/英文" } ,
45- { voice : "Roy" , name : "闽南-阿杰" , desc : "闽南哥仔" , lang : "中文/英文" } ,
4642 { voice : "Jennifer" , name : "詹妮弗" , desc : "美剧大女主" , lang : "中文/英文" } ,
4743 { voice : "Ryan" , name : "甜茶" , desc : "美剧张力男" , lang : "中文/英文" } ,
4844 { voice : "Katerina" , name : "卡捷琳娜" , desc : "御姐深情女" , lang : "中文/英文" } ,
@@ -150,7 +146,7 @@ export default defineCommand({
150146 } ,
151147 {
152148 flag : "--voice <voice>" ,
153- description : "Output voice ID (default: Cherry ). Use --list-voices to see all options" ,
149+ description : "Output voice ID (default: Tina ). Use --list-voices to see all options" ,
154150 } ,
155151 {
156152 flag : "--list-voices" ,
@@ -199,7 +195,7 @@ export default defineCommand({
199195 }
200196
201197 const model = ( flags . model as string ) || config . defaultOmniModel || "qwen3.5-omni-plus" ;
202- const voice = ( flags . voice as string ) || "Cherry " ;
198+ const voice = ( flags . voice as string ) || "Tina " ;
203199 const audioFormat = ( flags . audioFormat as string ) || "wav" ;
204200 const textOnly = flags . textOnly === true ;
205201 const format = detectOutputFormat ( config . output ) ;
0 commit comments