-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
785 additions
and
171 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
zh-CN: | ||
- 使用新一代卡尔迪的语音合成引擎 | ||
zh-TW: | ||
- 使用新一代卡爾迪的語音合成引擎 | ||
zh-HK: | ||
- 使用新一代卡爾迪的語音合成引擎 | ||
|
||
en-US: | ||
- Use the new generation of Cardi's speech synthesis engine | ||
en-GB: | ||
- Use the new generation of Cardi's speech synthesis engine | ||
|
||
ja-JP: | ||
- 新しい世代のカーディの音声合成エンジンを使用する | ||
|
||
ko-KR: | ||
- 새로운 세대의 카디 음성 합성 엔진을 사용하십시오 | ||
|
||
ru-RU: | ||
- Используйте новое поколение двигателя синтеза речи Карди | ||
|
||
de-DE: | ||
- Verwenden Sie die neue Generation des Sprachsynthese-Motors von Cardi | ||
|
||
fr-FR: | ||
- Utilisez le nouveau moteur de synthèse vocale de Cardi | ||
|
||
es-ES: | ||
- Utilice el nuevo motor de síntesis de voz de Cardi | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
app/src/main/java/com/k2fsa/sherpa/onnx/tts/engine/AppConst.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.k2fsa.sherpa.onnx.tts.engine | ||
|
||
import com.charleskorn.kaml.SingleLineStringStyle | ||
import com.charleskorn.kaml.Yaml | ||
import com.charleskorn.kaml.YamlConfiguration | ||
|
||
object AppConst { | ||
val yaml = Yaml( | ||
configuration = YamlConfiguration( | ||
strictMode = false, | ||
singleLineStringStyle = SingleLineStringStyle.PlainExceptAmbiguous | ||
) | ||
) | ||
} |
14 changes: 10 additions & 4 deletions
14
app/src/main/java/com/k2fsa/sherpa/onnx/tts/engine/service/CheckVoiceData.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.