Home PageFacebookRSS News Feed
PocketGPS
Web
SatNav,GPS,Navigation
SurfShark VPN
Pocket GPS World - SatNavs | GPS | Speed Cameras: Forums

Pocket GPS World :: View topic - A solution for TTS pronunciation for Go models (Loquendo)
 Forum FAQForum FAQ   SearchSearch   UsergroupsUsergroups   ProfileProfile   Log in for private messagesLog in for private messages   Log inLog in 

A solution for TTS pronunciation for Go models (Loquendo)
Goto page Previous  1, 2, 3 ... 5, 6, 7 ... 15, 16, 17  Next
 
Post new topic   Reply to topic    Pocket GPS World Forum Index -> TomTom Portable Navigation Devices
View previous topic :: View next topic  
Author Message
MARViN2003
Regular Visitor


Joined: Nov 27, 2005
Posts: 132
Location: Stroud, Gloucestershire

PostPosted: Thu Jun 10, 2010 7:12 pm    Post subject: Reply with quote

Well it's the [^0-9]? that is being replaced by the character and being read out.

I made rules for the specific number of digits, so I have 4 digit rules and 3 digit rules, anything else is just handled as it originally was.

Code:
"(^|[ \t]+)(M|A|B)[ \-]*([1-9])([1-9])([1-9])([1-9])" = "\1 \s \2 \3_ \4_ \5_ \6_"
"(^|[ \t]+)(M|A|B)[ \-]*([1-9])0([1-9])([1-9])" = "\1 \s \2 \3_ oh \4_ \5_"
"(^|[ \t]+)(M|A|B)[ \-]*([1-9])([1-9])0([1-9])" = "\1 \s \2 \3_ \4_ oh \5_"
"(^|[ \t]+)(M|A|B)[ \-]*([1-9])([1-9])([1-9])0" = "\1 \s \2 \3_ \4_ \5_ oh"
"(^|[ \t]+)(M|A|B)[ \-]*([1-9])0([1-9])0" = "\1 \s \2 \3_ oh \4_ oh"
"(^|[ \t]+)(M|A|B)[ \-]*([1-9])([1-9])00" = "\1 \s \2 \3_ \4_ double oh"
"(^|[ \t]+)(M|A|B)[ \-]*([1-9])00([1-9])" = "\1 \s \2 \3_ double oh \4_"
"(^|[ \t]+)(M|A|B)[ \-]*([1-9])000" = "\1 \s \2 \3_ thousand"
"(^|[ \t]+)(M|A|B)[ \-]*([1-9])([1-9])([1-9])" = "\1 \s \2 \3_ \4_ \5_"
"(^|[ \t]+)(M|A|B)[ \-]*([1-9])0([1-9])= "\1 \s \2 \3_ oh \4_"
"(^|[ \t]+)(M|A|B)[ \-]*([1-9])([1-9])0" = "\1 \s \2 \3_ \4_ oh"
"(^|[ \t]+)(M|A|B)[ \-]*([1-9])00" = "\1 \s \2 \3_ hundred"


I'll update the zip file

http://www.darklight.info/downloads/Loq7fix.zip
Back to top
View user's profile Send private message Visit poster's website
notones
Occasional Visitor


Joined: May 30, 2008
Posts: 11
Location: Devon/Cornwall

PostPosted: Fri Jun 11, 2010 4:14 pm    Post subject: Reply with quote

MARViN2003 wrote:

http://www.darklight.info/downloads/Loq7fix.zip


Hi thanks for all your work on this, had a few probs geting it working due to 2 sets of files 1 set on SD and 1 on internal, - removed SD files and it works great now.
Back to top
View user's profile Send private message
MARViN2003
Regular Visitor


Joined: Nov 27, 2005
Posts: 132
Location: Stroud, Gloucestershire

PostPosted: Fri Jun 11, 2010 10:34 pm    Post subject: Reply with quote

As there are no 4 digit Motorway numbers, the for digit rules don't need the M in there...

Code:
"(^|[ \t]+)(A|B)[ \-]*([1-9])([1-9])([1-9])([1-9])" = "\1 \s \2 \3_ \4_ \5_ \6_"
"(^|[ \t]+)(A|B)[ \-]*([1-9])0([1-9])([1-9])" = "\1 \s \2 \3_ oh \4_ \5_"
"(^|[ \t]+)(A|B)[ \-]*([1-9])([1-9])0([1-9])" = "\1 \s \2 \3_ \4_ oh \5_"
"(^|[ \t]+)(A|B)[ \-]*([1-9])([1-9])([1-9])0" = "\1 \s \2 \3_ \4_ \5_ oh"
"(^|[ \t]+)(A|B)[ \-]*([1-9])0([1-9])0" = "\1 \s \2 \3_ oh \4_ oh"
"(^|[ \t]+)(A|B)[ \-]*([1-9])([1-9])00" = "\1 \s \2 \3_ \4_ double oh"
"(^|[ \t]+)(A|B)[ \-]*([1-9])00([1-9])" = "\1 \s \2 \3_ double oh \4_"
"(^|[ \t]+)(A|B)[ \-]*([1-9])000" = "\1 \s \2 \3_ thousand"
"(^|[ \t]+)(M|A|B)[ \-]*([1-9])([1-9])([1-9])" = "\1 \s \2 \3_ \4_ \5_"
"(^|[ \t]+)(M|A|B)[ \-]*([1-9])0([1-9])= "\1 \s \2 \3_ oh \4_"
"(^|[ \t]+)(M|A|B)[ \-]*([1-9])([1-9])0" = "\1 \s \2 \3_ \4_ oh"
"(^|[ \t]+)(M|A|B)[ \-]*([1-9])00" = "\1 \s \2 \3_ hundred"
Back to top
View user's profile Send private message Visit poster's website
MARViN2003
Regular Visitor


Joined: Nov 27, 2005
Posts: 132
Location: Stroud, Gloucestershire

PostPosted: Wed Jun 16, 2010 11:38 am    Post subject: Reply with quote

I've been testing this with a few longish journeys, and haven't had any 'comma' or 'semi-colon' problems.

Has anyone else been testing my rules? I'd be interested in any feedback...
Back to top
View user's profile Send private message Visit poster's website
SpikeyMikey
Lifetime Member


Joined: Mar 21, 2006
Posts: 854
Location: Hertfordshire. Forever blowing bubbles

PostPosted: Wed Jun 16, 2010 3:03 pm    Post subject: Reply with quote

Hi, thanks for everybodys hard work on this.

I've downloaded the latest zip files and still get commas and dots being read out, have I missed something?
_________________
Mike
TT GO6000 (Europe); iPhone and iPad Pro with iOS TT GO & MyDrive + CamerAlert
Back to top
View user's profile Send private message
MARViN2003
Regular Visitor


Joined: Nov 27, 2005
Posts: 132
Location: Stroud, Gloucestershire

PostPosted: Thu Jun 17, 2010 9:31 am    Post subject: Reply with quote

Hmm,

I wonder if it's because I am on Navcore 9?
I don't get commas or dots read out...

Do you have your tomtom set to read out incoming text messages?
Maybe it's something with it loading up the SMS lex files...
Back to top
View user's profile Send private message Visit poster's website
theripper
Pocket GPS Verifier
Pocket GPS Verifier


Joined: Feb 07, 2006
Posts: 581
Location: Medway Towns, Kent

PostPosted: Thu Jun 17, 2010 5:44 pm    Post subject: Reply with quote

MARViN2003 wrote:
Hmm,

I wonder if it's because I am on Navcore 9?
I don't get commas or dots read out...

Do you have your tomtom set to read out incoming text messages?
Maybe it's something with it loading up the SMS lex files...


I think there is a voice setting to read out names and numbers, perhaps you have yours set differently!
Back to top
View user's profile Send private message
MARViN2003
Regular Visitor


Joined: Nov 27, 2005
Posts: 132
Location: Stroud, Gloucestershire

PostPosted: Thu Jun 17, 2010 10:21 pm    Post subject: Reply with quote

I have mine set to read road names and numbers, but not foreign road names. I aslo have the read signpost option ticked.
Back to top
View user's profile Send private message Visit poster's website
notones
Occasional Visitor


Joined: May 30, 2008
Posts: 11
Location: Devon/Cornwall

PostPosted: Fri Jun 18, 2010 9:04 pm    Post subject: Reply with quote

Hi i get commas and dots, using latest app from tt update v8.351
Western_and_central_Europe_2GB v845.2645 again from tt update
- have tried turning all options on/off and still get comma and dot.
i can make a route on google maps if that will help?

MARViN2003 wrote:
Hmm,

I wonder if it's because I am on Navcore 9?
I don't get commas or dots read out...

Do you have your tomtom set to read out incoming text messages?
Maybe it's something with it loading up the SMS lex files...
Back to top
View user's profile Send private message
notones
Occasional Visitor


Joined: May 30, 2008
Posts: 11
Location: Devon/Cornwall

PostPosted: Fri Jun 18, 2010 10:12 pm    Post subject: Dot and comma routes Reply with quote

Dot Route! [B3197 onto A379] or any road onto A379
http://maps.google.com/?ie=UTF8&t=h&hl=en&saddr=50.28766,-3.81401&daddr=50.30549,-3.83639&f=q&om=1

Comma Route! [A3022 onto A380] or any road onto A380
http://maps.google.com/?ie=UTF8&t=h&hl=en&saddr=50.48798,-3.57046&daddr=50.48543,-3.57205&f=q&om=1

Hope this helps
Back to top
View user's profile Send private message
SpikeyMikey
Lifetime Member


Joined: Mar 21, 2006
Posts: 854
Location: Hertfordshire. Forever blowing bubbles

PostPosted: Sat Jun 19, 2010 9:11 am    Post subject: Reply with quote

Hi Marvin2003, sorry for delayed reply I wanted to see if there was a pattern to the comma / dot problem, it seems that it's OK for two digit roads eg A41, but they appear after three or four digit roads eg A416 & A4009.

Hope that helps
_________________
Mike
TT GO6000 (Europe); iPhone and iPad Pro with iOS TT GO & MyDrive + CamerAlert
Back to top
View user's profile Send private message
MARViN2003
Regular Visitor


Joined: Nov 27, 2005
Posts: 132
Location: Stroud, Gloucestershire

PostPosted: Mon Jun 21, 2010 11:47 am    Post subject: Reply with quote

I've tried both those routes and don't get any comma or dots Sad

I'll grab my tomotm later and list all the settings I have...
Back to top
View user's profile Send private message Visit poster's website
SpikeyMikey
Lifetime Member


Joined: Mar 21, 2006
Posts: 854
Location: Hertfordshire. Forever blowing bubbles

PostPosted: Mon Jun 21, 2010 12:46 pm    Post subject: Reply with quote

Thanks.

I now realise that I should have said that it appears to only be a problem if the road number is followed by a name.

Sorry if I've put you to needless trouble.
_________________
Mike
TT GO6000 (Europe); iPhone and iPad Pro with iOS TT GO & MyDrive + CamerAlert
Back to top
View user's profile Send private message
notones
Occasional Visitor


Joined: May 30, 2008
Posts: 11
Location: Devon/Cornwall

PostPosted: Mon Jun 21, 2010 4:59 pm    Post subject: Reply with quote

Hi Spikey, were both using same map, but slightly diff versions of app, neither of us on v9 as marvin , i get dots and comma's on both numbers with or without names, but not all. even some 3 and 4 digit roads are fine, there doesnt seem to be any set pattern, also sometimes just going over a roundabout on the same road will at some roundabouts give dot and others give commas, im getting used to it as its still far better than the defaults.

SpikeyMikey wrote:
Thanks.

I now realise that I should have said that it appears to only be a problem if the road number is followed by a name.

Sorry if I've put you to needless trouble.
Back to top
View user's profile Send private message
MARViN2003
Regular Visitor


Joined: Nov 27, 2005
Posts: 132
Location: Stroud, Gloucestershire

PostPosted: Sun Jun 27, 2010 3:30 pm    Post subject: Reply with quote

Hi all,

Unfortunateley, I've fried the mini usb socket on my go 520, so I can't access the files anymore (does anyone know a way to copy the files from internal disk to the sd card from the tomtom os? - brfore the charge goes completely...)

I've ordered a recon 930 from tomtom, so I'll continue my experimenting when I get that.
Back to top
View user's profile Send private message Visit poster's website







Posted: Today    Post subject: Pocket GPS Advertising

Back to top
Display posts from previous:   
Post new topic   Reply to topic    Pocket GPS World Forum Index -> TomTom Portable Navigation Devices All times are GMT + 1 Hour
Goto page Previous  1, 2, 3 ... 5, 6, 7 ... 15, 16, 17  Next
Page 6 of 17

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

Make a Donation



CamerAlert Database

Click here for the PocketGPSWorld.com Speed Camera Database

Download Speed Camera Database
22.053 (15 May 24)



WORLDWIDE SPEED CAMERA SPOTTERS WANTED!

Click here to submit camera positions to the PocketGPSWorld.com Speed Camera Database


12mth Subscriber memberships awarded every week for verified new camera reports!

Submit Speed Camera Locations Now


CamerAlert Apps



iOS QR Code






Android QR Code







© Terms & Privacy


GPS Shopping