Skip to content

Instantly share code, notes, and snippets.

@wesbos
Last active July 20, 2022 18:13
Show Gist options
  • Select an option

  • Save wesbos/cd16b8b1815825f111a2 to your computer and use it in GitHub Desktop.

Select an option

Save wesbos/cd16b8b1815825f111a2 to your computer and use it in GitHub Desktop.
// paste in your console
speechSynthesis.onvoiceschanged = function() {
var msg = new SpeechSynthesisUtterance();
msg.voice = this.getVoices().filter(v => v.name == 'Cellos')[0];
msg.text = Object.keys(window).join(' ');
this.speak(msg);
};
@wesbos

wesbos commented Feb 16, 2016

Copy link
Copy Markdown
Author

For an extra treat, change Cellos to Hysterical

sorry.

@therealklanni

Copy link
Copy Markdown

Love it!

@jabranr

jabranr commented Feb 16, 2016

Copy link
Copy Markdown

LOL awesome!

@therealklanni

Copy link
Copy Markdown

Bad News is pretty great, too.

@0q98ahdsg3987y1h987y

Copy link
Copy Markdown

this is amazing

@TomOffringa

Copy link
Copy Markdown

:D

@wimleers

Copy link
Copy Markdown

AWESOME! :D

@elijahmanor

Copy link
Copy Markdown

Nice one Wes! Made some minor tweaks to find unique globals by comparing current globals to an iframe's globals.

( function() {
  "use strict";
  const getGlobals = callback => {
    var iframe = document.createElement( "iframe" );
    iframe.addEventListener( "load", () => {
      const windowKeys = Object.keys( window );
      const iframeKeys = Object.keys( iframe.contentWindow );
      const uniqueKeys = windowKeys.reduce( ( memo, key ) => {
        if ( !~iframeKeys.indexOf( key ) ) {
          memo.push( key );
        }
        return memo;
      }, [] );
      callback ( uniqueKeys );
    } );
    iframe.src = "about:blank";
    document.body.appendChild( iframe );
  }
  const msg = new SpeechSynthesisUtterance();
  msg.voice = speechSynthesis.getVoices().filter( v => v.name == "Cellos" )[ 0 ];
  getGlobals( keys => {
    console.log( keys );
    msg.text = keys.join( " " );
    speechSynthesis.speak( msg );
  } );
} () );

@betacar

betacar commented Feb 17, 2016

Copy link
Copy Markdown

In case you're wondering, use speechSynthesis.cancel() to shut it up.

@groteworld

Copy link
Copy Markdown

Took @elijahmanor's code and added a iframe.remove() after callback is made, to cleanup resulting iframes. I threw this into a bookmarklet maker. Baby, you got yourself a stew going!

"use strict";

(function () {
(function () {
  "use strict";
  var getGlobals = function getGlobals(callback) {
    var iframe = document.createElement("iframe");
    iframe.addEventListener("load", function () {
      var windowKeys = Object.keys(window);
      var iframeKeys = Object.keys(iframe.contentWindow);
      var uniqueKeys = windowKeys.reduce(function (memo, key) {
        if (! ~iframeKeys.indexOf(key)) {
          memo.push(key);
        }
        return memo;
      }, []);
      callback(uniqueKeys);
      iframe.remove();
    });
    iframe.src = "about:blank";
    document.body.appendChild(iframe);
  };
  var msg = new SpeechSynthesisUtterance();
  msg.voice = speechSynthesis.getVoices().filter(function (v) {
    return v.name == "Cellos";
  })[0];
  getGlobals(function (keys) {
    console.log(keys);
    msg.text = keys.join(" ");
    speechSynthesis.speak(msg);
  });
})();

@wesbos

wesbos commented Feb 17, 2016

Copy link
Copy Markdown
Author

Ahahah this is amazing. Only a bunch of developers would take a joke and build it out even more 😭

@akhelloufi

Copy link
Copy Markdown

console.log(window.speechSynthesis.getVoices());
in google chrome give all the name voice with many languages

@elijahmanor

Copy link
Copy Markdown

@groteworld nice addition to remove the iframe & a bookmarklet is a good idea.
@wesbos it's hard to not be a geek ;)

@mrspeaker

Copy link
Copy Markdown

Damn you! Just redundified my js1k entry!

@jnewc

jnewc commented Feb 17, 2016

Copy link
Copy Markdown

"Good News" πŸ‘

@chrislaughlin

Copy link
Copy Markdown

πŸ‘

@LPGhatguy

Copy link
Copy Markdown

I was able to get all the voices to work on OS X with Chrome 49, but on Windows with Chrome 50 I'm not getting any of the named voices, just the boring Google ones. 😦

@L1fescape

Copy link
Copy Markdown

Awesome! You can also invoke speech synthesis from outside the onvoiceschanged method:

var msg = new SpeechSynthesisUtterance();
msg.voice = speechSynthesis.getVoices().filter(v => v.name == 'Alex')[0];
msg.text = 'hi there from the dev tools console';
speechSynthesis.speak(msg);

@StoneCypher

Copy link
Copy Markdown

In case you'd like to know what they all sound like (there's a bunch of funny ones)

var msgs    = speechSynthesis.getVoices().map( (v, i) => { return { voice: v, text: `hi there from the voice named ${v.name}` }; }),
    speaker = new SpeechSynthesisUtterance(),
    halt    = false;

function speakOne(i) {
  if (halt) { halt = false; return; }
  speaker.voice = msgs[i].voice;
  speaker.text  = msgs[i].text;
  speechSynthesis.speak(speaker);
  console.log(`Saying "${speaker.voice.name}"`);
}

function speakAll() {
  var cursor = 0;
  speaker.onend = () => (++cursor) >= msgs.length? true : speakOne(cursor);  // chain each end
  speakOne(cursor);                                                          // start the series
}

To bail, set halt to true in the console. speechSynthesis.cancel() will only cancel the currently speaking voice.

I like Bad News, Bells, Cellos, Hysterical, and the way the language-specific Google voices butcher the words "hi there from."

Call speakOne(i) to listen to any specific voice by index, or speakAll() to listen to them all.

I also gisted this here.

@msikma

msikma commented Feb 18, 2016

Copy link
Copy Markdown

I've got Japanese too. Is this standard in all Chrome installs?

var msg = new SpeechSynthesisUtterance();
msg.voice = speechSynthesis.getVoices().filter(v => v.name == 'Google ζ—₯本θͺž')[0];
msg.text = 'γ“γ‚“γ«γ‘γ―ηš†γ•γ‚“οΌ';
speechSynthesis.speak(msg);

@ToreJuloe

Copy link
Copy Markdown

@akenn The reason it's wrapped in the voiceschanged eventlistener, is that the voices are loaded asynchronously and this way you can make sure that they actually exist before you start using them.

It's no problem when you just run the snippet in the dev console, but if it's embedded on a page and set to run immediately, you'll get an error.

Here's a pretty cool Pen to play around with the different voices.

@L1fescape

Copy link
Copy Markdown

@ToreJuloe oh good to know - thanks!

@mathiasbynens

Copy link
Copy Markdown

Why not use Array#find? .filter(v => v.name == 'Cellos')[0] β†’ .find(v => v.name == 'Cellos')

@msikma Not in my Opera/Chrome.

@riston

riston commented Feb 19, 2016

Copy link
Copy Markdown

Its not working in Linux window.speechSynthesis.getVoices() returns empty array no "voices" :(

@incleaf

incleaf commented Mar 14, 2016

Copy link
Copy Markdown

Wow πŸ‘

@imtaehyun

Copy link
Copy Markdown

Love it!

@pokono

pokono commented Mar 24, 2016

Copy link
Copy Markdown

Awesome!!

@heytulsiprasad

Copy link
Copy Markdown

I really hope I wasn't the last one to find out this! Amazing πŸŽ‰

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment