• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

voice-recognition

 
Ranch Hand
Posts: 192
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is there any voice-recognition software that I can add to my java application?
Thank you in advance
Garandi
 
Ranch Hand
Posts: 47
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi..

well u can try google to search that...if in any case u r unable to do that i m providing u a link!!

http://java.sun.com/developer/technicalArticles/Programming/robotics/

a small article with code snippet is there. and u can find many commercial as well as free s/w, if u search in google.

enjoy
Ashish
[ October 21, 2004: Message edited by: Ashish Vegaraju ]
 
Ranch Hand
Posts: 808
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Rudimentary voice-recognition software is fairly easy to write if you're working with a limited vocabulary in a non-critical environment. This is especially true if you can have the end user record the command vocabulary at setup. Of course, you wouldn't use simple methods if you need a broad voabulary (like a voice-controlled typewriter) or in safety-critical applications.
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Here are some links which may help you.
http://java.sun.com/products/java-media/speech/

(There is a list of implementations of the Java voice stuff on the Sun website.)

http://www.cloudgarden.com (30 day free trial and only $16 for a personal license or $420(I think) for developer license for 1 developer and up to 1000 distributions.) They have some example code which can help you.

I couldn't manage to download the IBM ViaVoice free trial. (A License there is over $4000 and you have to wait 4-6 weeks just to get one).

I am experimenting with the cloud garden implementation now. Using the Microsoft SAPI5 voice engine which you can get (for free) at http://www.microsoft.com/speech/download/sdk51/.
You need to train it to understand words, which can be a little annoying.

The accuracy with this hasn't been so good, but I am using the low-end microphone that came with my Dell.

The coding is a little complicated, but cloud garden's example code together with the java API should get you started fairly quickly.


Daniel
 
Let's go to the waterfront with this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic