axiacore

Blog

How to make your browser talk using speechSynthesis

Camilo Nova

Camilo Nova

Published

1 min read.

You can make your browser talk to you using the new awesome speech-api spec, simple as:

function talkToMe () {
    var msg = new SpeechSynthesisUtterance();
    msg.lang = 'en';
    msg.rate = 2;
    msg.text = 'We are an awesome team';
    window.speechSynthesis.speak(msg);
}

Call this javascript function and you will start listening to your browser (must be an updated browser).

See full spec at: https://dvcs.w3.org/hg/speech-api/raw-file/tip/speechapi.html

Get a monthly update from our CEO:

Learn about how we think:

How to retrieve Facebook extra info from Django

When we use python-social-auth sometimes there is a need to obtain some extra information from the Facebook about a regis...

Vera Mazhuga

Vera Mazhuga

Published Apr 21, 2014

Imagen vs. Diseño digital

Durante muchos años, se ha venido hablando sobre que la buena imagen de una página web, trae consigo más clientes y una mayor...

Roberto Aguirre

Roberto Aguirre

Published Apr 04, 2014

Talk Review: Building a RESTfull API Using Django

Some days ago I gave a talk on how to create REST APIs usingDjango Rest Framework, the idea was to share some of the thi...

Pablo Vallejo

Pablo Vallejo

Published Apr 14, 2014

Own your tech to own your destiny.

Let's Talk