|
2011-01-13
, 10:48
|
Posts: 2,829 |
Thanked: 1,459 times |
Joined on Dec 2009
@ Finland
|
#62
|
|
2011-01-13
, 11:14
|
Posts: 52 |
Thanked: 18 times |
Joined on Mar 2010
@ Cordoba,Argentina
|
#63
|
|
2011-01-13
, 11:52
|
|
Posts: 397 |
Thanked: 802 times |
Joined on Jan 2010
@ Sydney
|
#64
|
Awesome work. I had to say that I would like to hear pre recorded files on this one. This robot sound reminds me of some pre historic windows 3.11 text to speech applications and most of time makes me wonder "Was that r2d?"
Amazing job folks! Any progress with the offline navigation and search? Is this even possible?
The Following 36 Users Say Thank You to Blaizzen For This Useful Post: | ||
222, alynsparkes, BLC, bunanson, cheve, CormacB, D4rKlar, ed00, ezmendriz, Faz, gregoranderson, ioan, jhb, klinglerware, MaddogG, MaDless, maluka, Mentalist Traceur, MiK546, mivoligo, MohammadAG, OVK, Prospector, saned, Sasler, sbock, shanttu, shazosbourne, slender, stlpaul, Swimm12984, tele, travla, tswindell, Wikiwide, zimon |
|
2011-01-13
, 12:35
|
Posts: 31 |
Thanked: 38 times |
Joined on Dec 2010
|
#65
|
I gotta agree, I've finished implementing the ovi maps with full speech using espeak (including street names thanks to jhb, again thank you!) and I cannot understand much . The turn left turn right part is understandable, but I think it can't manage the street names very well
Offline navigation is already available due to the plugin. I personally haven't looked deep into it yet and I might not get around to it for a while, however there's heaps of talented programmers here now modding ovi, so who knows what will happen
I modified jhb's python server slightly to allow for full sentences from the javascript to be sent, hence enabling speech for street names too. I've uploaded the modified html file and the python file for people to test.
All thanks goes to jhb and CormacB for doing all the hard work
Edit: Should mention its only English for now, to change the language, search for "//show manuvours" in the html file to see the speech part and change the words accordingly.
|
2011-01-13
, 14:06
|
Posts: 137 |
Thanked: 150 times |
Joined on Jan 2010
|
#66
|
|
2011-01-13
, 14:35
|
Posts: 1,203 |
Thanked: 3,027 times |
Joined on Dec 2010
|
#67
|
|
2011-01-13
, 16:55
|
|
Posts: 115 |
Thanked: 18 times |
Joined on Jan 2010
|
#68
|
|
2011-01-13
, 18:11
|
Posts: 137 |
Thanked: 150 times |
Joined on Jan 2010
|
#69
|
|
2011-01-13
, 18:20
|
|
Posts: 451 |
Thanked: 424 times |
Joined on Apr 2010
@ England
|
#70
|
The Following User Says Thank You to jd4200 For This Useful Post: | ||
https://developer.mozilla.org/en/using_xmlhttprequest
which would mean something like:
var req = new XMLHttpRequest();
req.open('GET', 'http://localhost:9999/turn_right', true);
req.send(null);
(to make an asynchronous request, e.g. the javascript continues and doesn't care about the meaningless output from the server)
Cheers,
Joerg