watson-speech
Version:
IBM Watson Speech to Text and Text to Speech SDK for web browsers.
114 lines (84 loc) • 4.66 kB
HTML
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: speech-to-text/writable-element-stream.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: speech-to-text/writable-element-stream.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>'use strict';
var Writable = require('stream').Writable;
var util = require('util');
var defaults = require('defaults');
/**
* Writable stream that accepts results in either object or string mode and outputs the text to a supplied html element
*
* Can show interim results when in objectMode
*
* @todo: consider automatically setting the value attribute on <input> elements
*
* @param options
* @param {String|DOMElement} options.outputElement
* @param {Boolean} [options.clear=true] delete any previous text
* @constructor
*/
function WritableElementStream(options) {
this.options = options = defaults(options, {
decodeStrings: false, // false = don't convert strings to buffers before passing to _write (only applies in string mode)
clear: true
});
this.el = typeof options.outputElement === 'string' ? document.querySelector(options.outputElement) : options.outputElement;
if (!this.el) {
throw new Error('Watson Speech to Text WriteableElementStream: missing outputElement');
}
Writable.call(this, options);
if (options.clear) {
this.el.textContent = '';
}
if (options.objectMode) {
this.finalizedText = this.el.textContent;
this._write = this.writeObject;
} else {
this._write = this.writeString;
}
}
util.inherits(WritableElementStream, Writable);
WritableElementStream.prototype.writeString = function writeString(text, encoding, next) {
this.el.textContent += text;
next();
};
WritableElementStream.prototype.writeObject = function writeObject(result, encoding, next) {
if (result.final) {
this.finalizedText += result.alternatives[0].transcript;
this.el.textContent = this.finalizedText;
} else {
this.el.textContent = this.finalizedText + result.alternatives[0].transcript
}
next();
};
module.exports = WritableElementStream;
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-watson-speech.html">watson-speech</a></li><li><a href="module-watson-speech_speech-to-text.html">watson-speech/speech-to-text</a></li><li><a href="module-watson-speech_speech-to-text_recognize-blob.html">watson-speech/speech-to-text/recognize-blob</a></li><li><a href="module-watson-speech_speech-to-text_recognize-element.html">watson-speech/speech-to-text/recognize-element</a></li><li><a href="module-watson-speech_speech-to-text_recognize-microphone.html">watson-speech/speech-to-text/recognize-microphone</a></li><li><a href="module-watson-speech_text-to-speech.html">watson-speech/text-to-speech</a></li><li><a href="module-watson-speech_text-to-speech_get-voices.html">watson-speech/text-to-speech/get-voices</a></li><li><a href="module-watson-speech_text-to-speech_synthesize.html">watson-speech/text-to-speech/synthesize</a></li></ul><h3>Classes</h3><ul><li><a href="FilePlayer.html">FilePlayer</a></li><li><a href="FormatStream.html">FormatStream</a></li><li><a href="MediaElementAudioStream.html">MediaElementAudioStream</a></li><li><a href="RecognizeStream.html">RecognizeStream</a></li><li><a href="TimingStream.html">TimingStream</a></li><li><a href="WebAudioL16Stream.html">WebAudioL16Stream</a></li><li><a href="WritableElementStream.html">WritableElementStream</a></li></ul><h3>Events</h3><ul><li><a href="RecognizeStream.html#event:close">close</a></li><li><a href="RecognizeStream.html#event:connection-close">connection-close</a></li><li><a href="RecognizeStream.html#event:data">data</a></li><li><a href="RecognizeStream.html#event:error">error</a></li><li><a href="RecognizeStream.html#event:results">results</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.0</a> on Thu Feb 18 2016 22:44:45 GMT+0000 (UTC)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html>