Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <h1>Everything recorded here is sent to Processing via Websocket</h1>
<h3>ws://localhost:1337/p5websocket</h3>
More information how to set up Processing: <a href="http://stt.getflourish.com/" target="_blank">http://stt.getflourish.com/</a>
              
            
!

CSS

              
                body {
  background: black;
  color: white;
  padding: 5%;
}
              
            
!

JS

              
                    // We need to check if the browser supports WebSockets
    if ("WebSocket" in window) {
      // Before we can connect to the WebSocket, we need to start it in Processing.
      // Example using WebSocketP5
      // https://github.com/muthesius/WebSocketP5
      var ws = new WebSocket("ws://localhost:1337/p5websocket");
    } else {
      // The browser doesn't support WebSocket
      alert("WebSocket NOT supported by your Browser!");
    }
    // Now we can start the speech recognition
    // Supported only in Chrome
    // Once started, you need to allow Chrome to use the microphone
    var recognition = new webkitSpeechRecognition();
    // Be default, Chrome will only return a single result.
    // By enabling "continuous", Chrome will keep the microphone active.
    recognition.continuous = true;
recognition.lang = "en-US";
    recognition.onresult = function(event) {
        // Get the current result from the results object
        var transcript = event.results[event.results.length - 1][0].transcript;
        // Send the result string via WebSocket to the running Processing Sketch
        ws.send(transcript);
      console.log(transcript)
      }
      // Start the recognition
    recognition.start();

recognition.onend = function(){
    recognition.start();
}

              
            
!
999px

Console