E
E
Evgeny Ivanov2020-05-09 08:00:05
speech synthesis
Evgeny Ivanov, 2020-05-09 08:00:05

How to convert text to speech (free projects, services)?

I want to create an application with the sound of the entered text.
The user enters text, the application reads it.

What services can be used to convert text to speech? Interested in free projects (git)
Maybe something is under Delphi, C#? Well, or javascript (often it is web oriented).
Paid sites are also interesting, with easy registration and minimal cost (this is important). You give them an http request, they give you a file.

I looked at Amazon Polly and Yandex SpeechKit. I liked the quality of the translation.
But, unfortunately, it requires the creation of an account. Of course, you need an account to pay for anything. But the amount of information required and linking the card ... even I somehow don’t want to link a real card, and users, especially, will not go to such difficulties.

What can you advise me?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
H
HemulGM, 2020-05-09
@logpol32

Google MS SpeechAPI. There are dozens of Delphi examples on the net for working with a standard Windows synthesizer. You don't need to invent anything. Just recently I made a bot for VK on Delphi with just such an opportunity. "TextToSpeech"

E
Emran Begov, 2020-05-09
@Emran

How about SpeechSynthesisUtterance in JS?

let synth = window.speechSynthesis;

    document.onclick = function(){
      let speech = new SpeechSynthesisUtterance();
      speech.lang = 'ru-RU'; // язык
      speech.rate = 1.5; // скорость
      speech.text = 'Текст для озвучки';
      synth.speak(speech);
    }

#
#, 2020-05-09
@mindtester

https://cloud.yandex.ru/docs/speechkit/
https://support.microsoft.com/ru-ru/help/4468250/w...
https://docs.microsoft.com/ru-ru/ archive/msdn-maga...
https://docs.microsoft.com/en-us/azure/cognitive-s...

C
citywww, 2020-09-04
@citywww

https://zvukogram.com/speech/ - simple, convenient and most importantly fast service. I needed the ogg format. From convenient found only here. Voices are clear, all words are spoken correctly.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question