Lost_Edge/VoiceGenerator/GenerateDialogue.py
2025-02-21 21:54:37 +01:00

12 lines
504 B
Python

import torch
from TTS.api import TTS
# Get device
device = "cuda" if torch.cuda.is_available() else "cpu"
tts = TTS("tts_models/multilingual/multi-dataset/bark").to(device)
tts.tts_to_file(text="Greetings Nikolay. How is your mother? I didn't saw it after that incident. \
[cough] Thought you making good at school. And stop laming feed in Dota you garbage.",
voice_dir=".\\voices\\",
speaker="Mortis",
file_path=".\\output\\Mortis.wav")