Browse Source

emotion omazh removed

0x4a52466c696e74 2 years ago
parent
commit
892a169cc9
3 changed files with 8 additions and 4 deletions
  1. BIN
      test_data/tts.wav
  2. 1 1
      tts.go
  3. 7 3
      z_test.go

BIN
test_data/tts.wav


+ 1 - 1
tts.go

@@ -70,7 +70,7 @@ func TextToSpeech(config *TTSConfig) (io.ReadCloser, error) {
 		"folderId":        []string{config.YaFolderID},
 	}
 	// emotion deprecated - only for omazh and jane
-	if config.Voice != "omazh" && config.Voice != "jane" {
+	if config.Voice != "jane" {
 		delete(httpForm, "emotion")
 	}
 	// ssml

+ 7 - 3
z_test.go

@@ -5,6 +5,7 @@ import (
 	"testing"
 
 	"git.ali33.ru/fcg-xvii/go-tools/text/config"
+	_ "git.ali33.ru/fcg-xvii/go-tools/text/config/ini"
 )
 
 var (
@@ -12,10 +13,11 @@ var (
 )
 
 func init() {
-	if f, err := os.Open("test_data/ya.config"); err == nil {
-		config.SplitToVals(f, "::", &yaFolderID, &yaAPIKey)
-		f.Close()
+	if conf, err := config.FromFile("ini", "test_data/ya.config"); err == nil {
+		yaFolderID = conf.ValueDefault("folder_id", yaFolderID).(string)
+		yaAPIKey = conf.ValueDefault("api_key", yaAPIKey).(string)
 	}
+
 }
 
 func TestTextToSpeech(t *testing.T) {
@@ -26,6 +28,8 @@ func TestTextToSpeech(t *testing.T) {
 
 	// init request config
 	config := TTSDefaultConfigText(yaFolderID, yaAPIKey, "Привет, это тест синтеза речи с помощью сервиса Яндекса")
+	config.Emotion = "good"
+	config.Voice = VoiceJane
 
 	r, err := TextToSpeech(config)
 	if err != nil {