Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How can voice output be modified?

modified output Voice
0
10 Posted

How can voice output be modified?

0

Per default, all output that your HAWHAW application creates for visual browsers will be text-to-speech converted automatically by the voice platform’s speech synthesizer. But chances are good, that sometimes you want to modify this output. E.g. your application puts out something like a string from the HAWHAW demo: sqrt(16)=4 As speech synthesizers normally have no degree in mathematics, the speech output will not be what you are expecting. For a better understanding your HAWHAW application can do something like this: $myFormula = new HAW_text(“sqrt(16)=4”); $myFormula->set_voice_text(“squareroot of 16 is equal 4”); Alternatively you can record a wav-file and instruct the voice platform to play it: $myFormula->set_voice_text(“squareroot of 16 is equal 4”, “formula.wav”); In the latter case the text string is of no significance as long as no technical problems prevent the voice platform from playing the audio file.

0
10

Per default, all output that your HAWHAW application creates for visual browsers will be text-to-speech converted automatically by the voice platform’s speech synthesizer. But chances are good, that sometimes you want to modify this output. E.g. your application puts out something like a string from the HAWHAW demo: sqrt(16)=4 As speech synthesizers normally have no degree in mathematics, the speech output will not be what you are expecting. For a better understanding your HAWHAW application can do something like this: $myFormula = new HAW_text(“sqrt(16)=4”); $myFormula->set_voice_text(“squareroot of 16 is equal 4”); Alternatively you can record a wav-file and instruct the voice platform to play it: $myFormula->set_voice_text(“squareroot of 16 is equal 4”, “formula.wav”); In the latter case the text string is of no significance as long as no technical problems prevent the voice platform from playing the audio file. If want to build a voice application without any synthesized speech out

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123