text-to-speech and speech recognition solution provided by iSpeech.org, with SDKs for iPhone, Android, BlackBerry, Java, JavaScript, .NET, PHP and other platforms or programming languages.
Questions tagged [ispeech]
14 questions
4
votes
0 answers
Implement barge-in for Android TTS
I am having difficulty figuring out how to resolve this issue, I am not sure if I am not setting up threads correctly or if it is even possible to resolve things properly.
This is an Android app that reads certain strings out as TTS (using the…

Edward Moreno
- 41
- 1
1
vote
0 answers
How to implement Arabic speech recognition to iOS app using iSpeech?
Now I would like to implement Arabic speech recognition and tts function to my sample app. It seems ispeech is already supporting Arabic and I have implemented Arabic tts function, but I don't know the way of implementing speech recognition of…

Michael Chen
- 11
- 2
1
vote
1 answer
iSpeech. Recognize when user is speaking
I am new to iSpeech trying to implement this on an iPhone app and would like to know how/if I can identify if the user is speaking. For example, when the mic is active and the user is saying something, I would like to capture that event so as to…

Katakam Nikhil
- 1,375
- 4
- 14
- 22
1
vote
2 answers
Unable to import iSpeech into my iOS Swift project
As the iSpeechSDK is written for Objective-C, I tried to import it in my existing iOS project using a bridging-header. I've copied all the associated headers and frameworks. However, I'm still unable to call the Objective-C class. See the attached…

mechdon
- 517
- 1
- 10
- 23
1
vote
0 answers
How to set frequency, channel and bit rate while writing wav file
Here is my code used to record audio and write the audioclip as wav
public void startRec()
{
aud = Microphone.Start ( null, false, 10, 16000 );
}
public void stopRec()
{
Microphone.End(null);
Save…

Manoj
- 3,947
- 9
- 46
- 84
1
vote
0 answers
How to wait for iSpeech to finish speaking before passing the next string
Im using iSpeech API. I've posted in their forums but there is not much activity over there. I can pass it a string and have the app speak it. But now I want to pass in an array of strings, say 5. I want the engine to speak those strings one…

marciokoko
- 4,988
- 8
- 51
- 91
1
vote
1 answer
iSpeech SDK with custom UI
I'm trying to use the iSpeech SDK(https://www.ispeech.org/developers/iphone) for my iPhone application for voice recognition. SDK is working fine. But I need to give my own UI and I will display their branding according to their branding…

Charith Nidarsha
- 4,195
- 3
- 28
- 32
1
vote
1 answer
iSpeech API Popup
I can not figure out how to make use of the iSpeech API. I use TTS and the API actually speaks, but I would like to know how to get rid of the pop-up box that comes up when doing the Speech Synthesis, As I need other UI working while this is going…

virindh
- 3,775
- 3
- 24
- 49
0
votes
1 answer
How to get SpeechSynthesis.speak(String) to block?
public boolean playing=false;
private void prepareTTSEngine() {
try {
synthesis = SpeechSynthesis.getInstance(this);
synthesis.setSpeechSynthesisEvent(new SpeechSynthesisEvent() {
public void…

Coenni
- 197
- 5
- 16
0
votes
1 answer
Using ispeech.org TTS in Android app
I am having trouble using ispeech.org TTS engine with my Android app.
The app crashes on:
java.lang.NoClassDefFoundError: org.ispeech.iSpeechFramework
at org.ispeech.SpeechSynthesis.showProcessingDialog(SpeechSynthesis.java:276)
…

Arch Botmaster
- 109
- 5
0
votes
1 answer
php curl functions issue
I am having troble on curl functions in my codes. My CURLINFO_HTTP_CODE always return 0 and when I use
curl_error($ch) it returns 'could not reach host'. My host is ispeech and it shouldn't have problems. Can anyone here help me out? Thanks a…

Rouge
- 4,181
- 9
- 28
- 36
0
votes
1 answer
How to change language in iSpeech SDK for iOS?
I am trying to use iSpeech SDK for iOS.
I am using Free version.
I'm fine with English Text To Speech with following codes.
[ispeech ISpeechSpeak:@"HELLO World"];
But I also want to use multiple language like japanese, korean, etc...
How can I…

Fire Fist
- 7,032
- 12
- 63
- 109
0
votes
2 answers
Build Error : expected a property attribute before 'unsafe_unretained'
I'm building iSpeechSDK Beta 3 (released on 2012-05-18) for my sample/test project (iOS Universal app) I just created. I'm getting build time errors.
.....iSpeechSDK/Headers/ISSpeechSynthesis.h:58: error: expected a property attribute before…

Ashok
- 6,224
- 2
- 37
- 55
0
votes
1 answer
iSpeech SDK Android VerifyError
I used iSpeech Demo to set up a test application with iSpeech SDK but it is giving me the following exception on which I am lost...
05-31 13:41:23.218: I/dalvikvm(271): Could not find method org.ispeech.SpeechSynthesis.getInstance, referenced from…

Mohammad Umair Khan
- 515
- 2
- 9
- 24