Code Monkey home page Code Monkey logo

Comments (1)

sdkcarlos avatar sdkcarlos commented on May 18, 2024

Hi @Danny-Engelman ,

artyom shouldn't generate any error when loaded from unsupported browsers (if it does, you are triggering some function of Artyom that use the APIs without verifying if they're supported or not). To verify if the browser supports any of the APIs use respectively the methods recognizingSupported (for voice commands) and speechSupported (for voice synthesis):

function Talk(text){
    if(!artyom.speechSupported()){
        console.log("Cannot talk");
        return;
    }

    artyom.say(text);
}


function StartRecognition(){
    if(!artyom.recognizingSupported()){
        console.log("Cannot process commands");
        return;
    }

    artyom.initialize({
        lang:"en-GB",
        continuous:true,
        debug:true,
        soundex:true,
        listen:true
    }).then(function(){
        console.log("Artyom is listening !");
    });
}

It shouldn't return false because there are other functions used by developers like simulateInstruction, besides some browsers provide partial support for only one of the APIs, that means that returning false when the browser doesn't support Speech Synthesis would leave out the Speech Recognition and there won't be support for voice commands.

from artyom.js.

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.