News
Mac: iSpeak It 1.6 released
By Dennis Lloyd
Publisher, iLoungeGoogle+
Published: Wednesday, May 19, 2004
News Categories: Mac Software
It’s a common problem, you have so much to read but not enough time to read it all. Well, now you don’t have to. With iSpeak It you can take any document and convert it into an MP3 in iTunes using your Mac’s built-in text-to-speech capabilities. From there you can listen to it at your leisure or, better yet, transfer it to your iPod and listen to it on the go!
What’s new in this version:
The ability download RSS/XML news feeds
Control of the iTunes encoder from within iSpeak It
Splitting paragraphs separated by a single return (as is common with Word documents)
A number of minor enhancements and bug fixes
License: Shareware $8.95
System Requirements: Mac OS X 10.2 or greater
Related Stories
- MS Office coming to iOS in 2013
- SuperSync 5 adds advanced ITunes Match support
- Apple releases Configurator 1.1
- iCloud Tabs to share Safari tabs between Mac, iOS
- Apple releases Configurator 1.0.1
- Ambrosia seeks iToner 3 beta testers
Comments
If you have a comment, news tip, advertising inquiry, or coverage request, a question about iPods/iPhones/iPad or accessories, or if you sell or market iPod/iPhone/iPad products or services, read iLounge's Comments + Questions policies before posting, and fully identify yourself if you do. We will delete comments containing advertising, astroturfing, trolling, personal attacks, offensive language, or other objectionable content, then ban and/or publicly identify violators.
Recent News
- iLounge Weekly coming Monday, giveaway update
- Apple drops refurbished fourth-gen iPad, mini prices
- Judge: US can show Apple e-book pricing conspiracy
- AT&T’s GoPhone to add LTE/HSPA+ support for iPhone
- Report: iOS 7 ‘black, white, and flat all over’
- Apple WWDC Keynote set for June 10
- Apps: Foursquare 6.2, Hyper Breaker Turbo, Pandora 4.3 + Shazam 6.0
- Apple patent application details interactive AirPlay, TV
- Report: iWatch pushed to late 2014?
- Griffin releases iPhone 5 Survivor + Catalyst Waterproof Case
Recent Reviews
- Lynktec TruGlide Pro Precision Stylus
- C4 Electronics Dolry HiFi Stone 30-Pin AirPlay Adapter
- Boombotix Boombot Rex Bluetooth Wireless Speaker
- Nuu Splash Portable Waterproof Bluetooth Wireless Speaker
- Scosche boomBottle Weatherproof Sport Wireless Speaker
- HMDX Jam Plus Bluetooth Wireless Speaker
- Fitbit Flex Wireless Activity & Sleep Wristband
- Cambridge Audio Minx Air 100 + 200 Bluetooth + AirPlay Wireless Speakers
- Mophie Juice Pack Plus for iPhone 5
- Ultimate Ears UE Boom
Recent Articles
- Costs associated with using FaceTime
- iMessages showing as Delivered when iPhone is out of coverage
- Inability to use Find My Friends without a passcode
- Calendar info disappears after iCloud restore
- Remove old iCloud backup after restoring to a new iPhone
- Setting up a ringtone in iTunes
- Using a Wi-Fi hard drive with an iPad
- Backing up and restoring an iPod classic
- Can’t restore iPod touch without passcode
- Retaining older versions of Apps during an iOS Restore


1
Does anyone think we honestly want to listen to Turn of the Screw as read by Victoria?
Posted by Mortimer on April 2, 2004 at 12:04 AM (PST)
2
Wow!! how aboutt a windows version of it??
Posted by Yarin on April 2, 2004 at 12:30 AM (PST)
3
Turn of the Skrew got censored? Henry James? Awful.
Posted by Mortimer on April 2, 2004 at 9:29 AM (PST)
4
I wouldn’t use it for a book-length work, but I will say that Mac OS X speech is surprisingly good. It sounds “odd” like most computer voices (the new Vicki is the most natural), but I’ve found from listening to text-to-speech in Unreal Tournament 2004 that you CAN understand it quite well without glancing at the text, even while doing other things. So this could have potential uses.
Posted by Nagromme on May 19, 2004 at 7:18 AM (PST)
5
There’s already an applescript that will render text-to-speech, for free. I’ve used it for many news articles.
property voice_names : {“Agnes”, “Albert”, “Bad News”, “Bahh”, “Bells”, “Boing”, “Bruce”, “Bubbles”, “Cellos”, “Deranged”, “Fred”, “Good News”, “Hysterical”, “Junior”, “Kathy”, “Organ”, “Princess”, “Ralph”, “Trinoids”, “Victoria”, “Whisper”, “Zarvox”}
property default_voice : “Victoria”
set this_voice to “”
set this_string to “Welcome to Mac OS Ten!”
try
repeat
display dialog “Enter the text to render to a sound file:” default answer this_string buttons {“Cancel”, “Try”, “Render”} default button 3
copy the result as list to {this_string, button_pressed}
if this_string is “” then
beep
else if the button_pressed is “Try” then
set this_voice to (choose from list voice_names default items default_voice with prompt “Pick the voice to use:”) as string
if this_voice is “false” then
exit repeat
else
set default_voice to this_voice
end if
say this_string using this_voice
else
if this_voice is “” then
set this_voice to (choose from list voice_names default items default_voice with prompt “Pick the voice to use:”) as string
if this_voice is “false” then
exit repeat
else
set default_voice to this_voice
end if
end if
set the target_file to choose file name with prompt “Name and location for the sound file:” default name “rendered.aiff”
say this_string using default_voice saving to target_file
exit repeat
end if
end repeat
on error error_message number error_number
if the error_number is not -128 then
display dialog error_message buttons {“Cancel”} default button 1
end if
end try
Posted by Rhomboid on May 19, 2004 at 4:21 PM (PST)
6
Sorry, tried pasting the script, but it didn’t take.
Posted by Rhomboid on May 19, 2004 at 4:22 PM (PST)
7
Render text to speech can be found on this page. http://www.apple.com/applescript/macosx/
Posted by Rhomboid on May 19, 2004 at 4:34 PM (PST)