User Tools

Site Tools


built_in:text_to_speech

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

built_in:text_to_speech [2017/07/07 14:33]
180.217.145.132 [Example]
built_in:text_to_speech [2018/03/12 20:19]
Line 1: Line 1:
-=====TextToSpeech===== 
- 
-//(Information and examples taken from the DroidScript documentation)// 
- 
-====Description==== 
- 
-The **TextToSpeech** method uses Android's speech engine to speek out loud the given **text**. You can specify the **pitch** and **speed** of the output with decimal values where a value of 1.0 is used for normal pitch or speed. 
- 
-Note: Custom speech engines are often installed by phone manufacturers, so the quality, available pitch and speed range may vary between devices. 
- 
-<code> app.TextToSpeech( text, pitch, speed, callback, stream );</code> 
- 
----- 
- 
-====Example==== 
- 
-<code javascript> 
- 
-function OnStart() 
-{ 
-  app.TextToSpeech( "DroidScript is awesome!", 1.0, 1.0, myfunc, "music" ); 
- 
- 
-function myfunc() 
-{ 
-  alert("Done reading!"); 
-} 
- 
-</code> 
  
built_in/text_to_speech.txt ยท Last modified: 2018/03/12 20:19 (external edit)