Since your user will be driving while interacting with your SDL app, speech phrases can provide important feedback to your user. At any time during your app's lifecycle you can send a speech phrase using the Speak
request and the head unit's text-to-speech (TTS) engine will produce synthesized speech from your provided text.
When using the Speak
RPC, you will receive a response from the head unit once the operation has completed. From the response you will be able to tell if the speech was completed, interrupted, rejected or aborted. It is important to keep in mind that a speech request can interrupt another on-going speech request. If you want to chain speech requests you must wait for for the current speech request to finish before sending the next speech request.
The speech request you send can simply be a text phrase, which will be played back in accordance with the user's current language settings, or it can consist of phoneme specifications to direct SDL’s TTS engine to speak a language-independent, speech-sculpted phrase. It is also possible to play a pre-recorded sound file (such as an MP3) using the speech request. For more information on how to play a sound file please refer to Playing Audio Indications.
To get the head unit's supported speech capabilities, check the sdlManager.getSystemCapabilityManager().getCapability(SystemCapabilityType.SPEECH)
after successfully connecting to the head unit. Below is a list of commonly supported speech capabilities.
Speech Capability | Description |
---|---|
Text | Text phrases |
SAPI Phonemes | Microsoft speech synthesis API |
File | A pre-recorded sound file |
TTSChunk ttsChunk = new TTSChunk("hello", SpeechCapabilities.TEXT); List<TTSChunk> ttsChunkList = Collections.singletonList(ttsChunk); Speak speak = new Speak(ttsChunkList);
TTSChunk ttsChunk = new TTSChunk("h eh - l ow 1", SpeechCapabilities.SAPI_PHONEMES); List<TTSChunk> ttsChunkList = Collections.singletonList(ttsChunk); Speak speak = new Speak(ttsChunkList);
speak.setOnRPCResponseListener(new OnRPCResponseListener() { @Override public void onResponse(int correlationId, RPCResponse response) { SpeakResponse speakResponse = (SpeakResponse) response; if (!speakResponse.getSuccess()){ switch (speakResponse.getResultCode()){ case DISALLOWED: Log.i(TAG, "The app does not have permission to use the speech request"); break; case REJECTED: Log.i(TAG, "The request was rejected because a higher priority request is in progress"); break; case ABORTED: Log.i(TAG, "The request was aborted by another higher priority request"); break; default: Log.i(TAG, "Some other error occurred"); } return; } Log.i(TAG, "Speech was successfully spoken"); } @Override public void onError(int correlationId, Result resultCode, String info) { Log.i(TAG, "onError: " + info); } }); sdlManager.sendRPC(speak);