Overtone - Realistic AI Offline Text to Speech (TTS)

Overtone is an offline Text-to-Speech asset for Unreal Engine. Enrich your game with 15+ languages, 900+ English voices, rapid performance, and cross-platform support.

Welcome to the updated Overtone documentation for Unreal Engine 5 (UE5)! This guide will walk you through setting up and utilizing the Overtone plugin in UE5 to bring text-to-speech capabilities to your projects. We’ll cover the core features, setup process, and provide examples on how to use the different components to generate speech from text.

Overview

Overtone for UE5 introduces a powerful text-to-speech solution, supporting over 15 languages and offering multiple quality levels (X-LOW, LOW, MEDIUM, HIGH) to suit various application needs. With more than 900 unique voices available in the default English model (LibriTTS), Overtone is equipped to provide high-quality voice outputs for a wide range of uses, from gaming to mobile applications.

Downloading Voice Models

In UE5, you can download voice models directly through the Overtone plugin. This functionality is accessible via the Overtone Download Manager, which can be found under Window > Overtone > Download Manager. This interface allows for easy management and downloading of voice models to use within your projects.

Overtone Window

You can open the Overtone windows by going to Window > Overtone.

Overtone Download Manager

The Overtone Download Manager provides a convenient interface for downloading and removing voice models. You can see all the available models and download them. The interface is constantly updated with new models, so be sure to check back regularly for the latest additions.

API

Overtone provides a simple to use C++ or Blueprints API to generate speech from text. The API can be consumed in the way of a global subsystem or a local component on Actors.

UOvertoneRuntimeSubsystem

The UOvertoneRuntimeSubsystem serves as the central point for managing text-to-speech operations, including generating speech from text and managing voice models.

Reference
UFUNCTION(BlueprintCallable)
void Play(const FOvertoneResult& OvertoneResult, UAudioComponent* AudioComponent);

UFUNCTION(BlueprintCallable)
UOvertoneVoiceWrapper* GetVoiceFor(const FVoiceMetadata& ModelIdentity) const;

UFUNCTION(BlueprintCallable)
TArray<FVoiceMetadata> GetAllVoiceMetadatas() const;

UFUNCTION(BlueprintCallable)
FOvertoneResult OvertoneTextToSpeech(const FString& Text, const UOvertoneVoiceWrapper* Voice);

UFUNCTION(BlueprintCallable)
void SetSpeakerId(const UOvertoneVoiceWrapper* Voice, const int32 SpeakerId) const;
Example usage: Getting all the voices downloaded
UOvertoneRuntimeSubsystem* OvertoneRuntimeSubsystem = GetWorld()->GetGameInstance()->GetSubsystem<UOvertoneRuntimeSubsystem>();
TArray<FVoiceMetadata> AvailableVoices = OvertoneRuntimeSubsystem->GetAllVoiceMetadatas();

UOvertoneComponent

The UOvertoneComponent is a component that can be added to any actor to enable text-to-speech functionality. It provides a simple interface for generating speech from text.

Reference
void SetVoice(UOvertoneVoiceWrapper* Voice);

UFUNCTION(BlueprintCallable)
void SetVoice(const FVoiceMetadata& VoiceMetadata);

UFUNCTION(BlueprintCallable)
UOvertoneVoiceWrapper* GetVoice() const;

UFUNCTION(BlueprintCallable)
void SetSpeakerId(const int32& SpeakerId);

UFUNCTION(BlueprintCallable)
void TextToSpeech(const FString& TextToSpeak);
Example usage: Doing Text to Speech

Include the following headers

#include "Subsystems/OvertoneRuntimeSubsystem.h"
#include "Components/OvertoneComponent.h"
#include "Structs/VoiceModelInformation.h"

Get all voice models and select the first one

UOvertoneRuntimeSubsystem* OvertoneRuntimeSubsystem = GetWorld()->GetGameInstance()->GetSubsystem<UOvertoneRuntimeSubsystem>();

TArray<FVoiceMetadata> AvailableVoices = OvertoneRuntimeSubsystem->GetAllVoiceMetadatas();
FVoiceMetadata SelectedVoiceMetadata = AvailableVoices[0];

Run text to speech and play the audio

UOvertoneComponent* OvertoneComponent = ...; // Get the component from the actor
OvertoneComponent->SetVoice(SelectedVoiceMetadata);
// UOvertoneComponent inherits an UAudioComponent
OvertoneComponent->TextToSpeech(TEXT("Hello, Unreal Engine 5!"));

Demos

The plugin contains a demo to demonstrate the text to speech functionality. You can input text, select a downloaded voice in the dropdown and listen to the output sound.

Supported Platforms

Overtone supports the following platforms:

Platform Supported
Windows
Android
iOS
MacOS
Linux

If interested in any other platforms, please reach out.

Supported Languages

Language Best Quality Number of Voices
Català (Espanya) (ca-es) MEDIUM 3
Čeština (Česká Republika) (cs-cz) MEDIUM 1
Dansk (Danmark) (da-dk) MEDIUM 1
Deutsch (Deutschland) (de-de) HIGH 16
Ελληνικά (Ελλάδα) (el-gr) LOW 1
English (United Kingdom) (en-gb) MEDIUM 131
English (United States) (en-us) HIGH 958
Español (España) (es-es) MEDIUM 6
Español (México) (es-mx) MEDIUM 1
Suomi (Suomi) (fi-fi) MEDIUM 2
Français (France) (fr-fr) MEDIUM 6
Magyar (Magyarország) (hu-hu) MEDIUM 2
Íslenska (Ísland) (is-is) MEDIUM 4
Italiano (Italia) (it-it) X-LOW 1
ქართული (საქართველო) (ka-ge) MEDIUM 1
Қазақ Тілі (Қазақстан) (kk-kz) HIGH 8
Lëtzebuergesch (Lëtzebuerg) (lb-lu) MEDIUM 1
नेपाली (नेपाल) (ne-np) MEDIUM 36
Nederlands (België) (nl-be) MEDIUM 4
Nederlands (Nederland) (nl-nl) LOW 2
Norsk (no-no) MEDIUM 1
Polski (Polska) (pl-pl) MEDIUM 3
Português (Brasil) (pt-br) MEDIUM 2
Português (Portugal) (pt-pt) MEDIUM 1
Română (România) (ro-ro) MEDIUM 1
Русский (Россия) (ru-ru) MEDIUM 4
Slovenčina (Slovensko) (sk-sk) MEDIUM 1
Српски (sr-rs) MEDIUM 2
Svenska (Sverige) (sv-se) MEDIUM 1
Kiswahili (sw-cd) MEDIUM 1
Türkçe (Türkiye) (tr-tr) MEDIUM 2
Українська (Україна) (uk-ua) MEDIUM 4
Tiếng Việt (Việt Nam) (vi-vn) MEDIUM 67
中文 (中国) (zh-cn) MEDIUM 2

Troubleshooting

For any questions, issues or feature requests don’t hesitate to email us at help@leastsquares.io or join the discord. Very are happy to help and aim to have very fast response times :)



About us

We are a small company focused on building tools for game developers. Send us an email to careers@leastsquares.io if interested in working with us. For any other inquiries, feel free to contact us at hello@leastsquares.io or contact us on the discord





Sign up to our newsletter.

Want to receive news about discounts, new products and updates?