File size: 1,737 Bytes
de6e35f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import os
import sys
import warnings

import torch

from InferenceInterfaces.ToucanTTSInterface import ToucanTTSInterface
from Utility.storage_config import MODELS_DIR

if __name__ == "__main__":
    warnings.filterwarnings("ignore", category=UserWarning)

    PATH_TO_TTS_MODEL = os.path.join(MODELS_DIR, "ToucanTTS_Shan", "best.pt")
    PATH_TO_REFERENCE_SPEAKER = ""  # audios/speaker_references_for_testing/female_high_voice.wav  audios/speaker_references_for_testing/male_low_voice.wav
    LANGUAGE = "shn"
    device = "cuda" if torch.cuda.is_available() else "cpu"

    tts = ToucanTTSInterface(device=device, tts_model_path=PATH_TO_TTS_MODEL)
    tts.set_language(lang_id=LANGUAGE)
    if PATH_TO_REFERENCE_SPEAKER != "":
        if os.path.exists(PATH_TO_REFERENCE_SPEAKER):
            tts.set_utterance_embedding(PATH_TO_REFERENCE_SPEAKER)
        else:
            print(
                f"\n\nFile {PATH_TO_REFERENCE_SPEAKER} could not be found, please check for typos and re-run. Using default for now.\n\n"
            )

    print("Loading the following configuration:")
    print(f"\tTTS Model:          {PATH_TO_TTS_MODEL}")
    print(f"\tReference Audio:    {PATH_TO_REFERENCE_SPEAKER}")
    print(f"\tLanguage Used:      {LANGUAGE}")
    print(f"\tDevice Used:        {device}")

    while True:
        text = input("\n\nWhat should I say? (or 'exit')\n")
        if text == "exit":
            sys.exit()
        tts.read_aloud(
            text,
            view=True,
            blocking=False,
            duration_scaling_factor=1.0,
            energy_variance_scale=1.0,
            pitch_variance_scale=1.0,
            glow_sampling_temperature=0.2,
        )