Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/java-speech-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSkylion007 <dragonsrcool.aaron@gmail.com>2013-07-28 00:32:34 +0400
committerSkylion007 <dragonsrcool.aaron@gmail.com>2013-07-28 00:32:34 +0400
commit6c32a421f200fb6895eb128ce2bdc4c10b8fba00 (patch)
tree8f6663568683f2a042342a9473821b1766e72d76
parenta20bcf73737beb51e016705642b112b260d97380 (diff)
Added methods to allow for strings of lengths 100 and greater.
Added separates a large string into smaller chunks so that Google will issue a response, sends those string fragments, and then combines the responses into one coherent input stream. Also added support to send List<String> to the synthesiser.
-rw-r--r--src/com/darkprograms/speech/synthesiser/Synthesiser.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/com/darkprograms/speech/synthesiser/Synthesiser.java b/src/com/darkprograms/speech/synthesiser/Synthesiser.java
index 78884ae..7182e6c 100644
--- a/src/com/darkprograms/speech/synthesiser/Synthesiser.java
+++ b/src/com/darkprograms/speech/synthesiser/Synthesiser.java
@@ -116,5 +116,6 @@ public class Synthesiser {
return i;
}
}
+ return -1;
}
}