Giter Site home page Giter Site logo

Comments (3)

JamesBrill avatar JamesBrill commented on June 18, 2024 1

Hi Andreas,

I'm not familiar with the rest of the Web Speech API, though I'd like to keep the scope of this particular module limited to the SpeechRecognition interface to avoid it becoming too complex.

That said, it might not be too hard for you to combine this component with the other Web Speech interfaces. This React component injects the speech recognition object into your component as a property called recognition. I'm not sure what you have in mind, but you could do something with this object before mounting your component. e.g.

componentWillMount() {
  const { recognition } = this.props;
  const grammar = '#JSGF V1.0; grammar colors; public <color> = aqua | azure | beige | bisque | black | blue | brown | chocolate | coral | crimson | cyan | fuchsia | ghostwhite | gold | goldenrod | gray | green | indigo | ivory | khaki | lavender | lime | linen | magenta | maroon | moccasin | navy | olive | orange | orchid | peru | pink | plum | purple | red | salmon | sienna | silver | snow | tan | teal | thistle | tomato | turquoise | violet | white | yellow ;'
  const speechRecognitionList = new SpeechGrammarList();
  speechRecognitionList.addFromString(grammar, 1);
  recognition.grammars = speechRecognitionList;
}

Then the transcript will presumably be limited to words from the custom grammar you set up. This is just an example - I've not explored the rest of the Web Speech API. However, if I had to combine the API with this component in some way, I'd modify the recognition property in the componentWillMount lifecycle hook.

Best of luck with your bachelor thesis!

James

from react-speech-recognition.

JamesBrill avatar JamesBrill commented on June 18, 2024 1

@AndreasTaime Each browser has its own implementation of Web Speech APIs. Chrome, for example, calls its implementation of Speech Grammar List webkitSpeechGrammarList. Usually, this implementation is accessible on the browser's window object.

To give you an idea of how to write something that'll work on most browsers, I had to do this to ensure that this module got a Speech Recognition object from most of the major browsers:

    const BrowserSpeechRecognition =
        window.SpeechRecognition ||
        window.webkitSpeechRecognition ||
        window.mozSpeechRecognition ||
        window.msSpeechRecognition ||
        window.oSpeechRecognition

BrowserSpeechRecognition was then a prototype I could instantiate with new BrowserSpeechRecognition(). If the user is on a browser that doesn't support Speech Recognition, BrowserSpeechRecognition would be undefined. In that case, I set browserSupportsSpeechRecognition to false so the consumer of the module can render some UI saying something like "sorry, this feature is not supported".

So you could try something like the following (note that I've not tried this myself):

    const SpeechGrammarList =
        window.SpeechGrammarList ||
        window.webkitSpeechGrammarList ||
        window.mozSpeechGrammarList ||
        window.msSpeechGrammarList ||
        window.oSpeechGrammarList;
    if (SpeechGrammarList) {
      const speechRecognitionList = new SpeechGrammarList();
      // Use speechRecognitionList
    } else {
      // SpeechGrammarList not supported by the user's browser; show this in the UI
    }

from react-speech-recognition.

AndreasTaime avatar AndreasTaime commented on June 18, 2024

Thanks for the quick answer!
Your example is kind of what I was hoping for. Unfortunately I encounter the same problem I did when trying beforehand.
Trying to setup a constructor with the new-property throws following TypeError.
I'm clearly missing something but am not able to initialize it correctly. Also tried to set it up in the constructor function - same error.
Any idea? Thanks again,
Andreas

bildschirmfoto 2019-03-04 um 11 11 24

from react-speech-recognition.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.