The Artima Developer Community
Sponsored Link

Java Buzz Forum
FreeTTS: Text to Speech engine for Java

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Vasanth Dharmaraj

Posts: 594
Nickname: vazz
Registered: Oct, 2003

Vasanth Dharmaraj is J2EE developer learning Dot Net
FreeTTS: Text to Speech engine for Java Posted: Jun 23, 2004 9:45 PM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by Vasanth Dharmaraj.
Original Post: FreeTTS: Text to Speech engine for Java
Feed Title: Vasanth Dharmaraj's Blogs
Feed URL: /SyndicationService.asmx/GetRssCategory?categoryName=Technology%7CJava
Feed Description: my thoughts on dot net, java, linux, formula one, xbox gamming...(my java category)
Latest Java Buzz Posts
Latest Java Buzz Posts by Vasanth Dharmaraj
Latest Posts From Vasanth Dharmaraj's Blogs

Advertisement

Last week I was writing a small tool at work to monitor a database table and alert me if something goes wrong. It is a command line tool and I wanted it to attract my attention. I tried showing a dialog but then I remembered talking ant and FreeTTS. Since I blogged about it I was thinking of trying it out. So I decided to make the tool tell me if something is wrong.

Setting up and getting the tool to talk was surprisingly easy. I made the tool talk with just four lines of code.

Voice voice = VoiceManager.getInstance().getVoice("kevin16");
voice.allocate();
voice.speak("Something is wrong!");
voice.deallocate();

It does not get any easier than that. Pretty cool. Now I hope I don’t annoy my colleagues with this. :-)

Read: FreeTTS: Text to Speech engine for Java

Topic: Help: IDEA + OS X + CVS + SSH? Previous Topic   Next Topic Topic: The BileBlog gets some competition

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use