You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've created and initialized an instance of Artyom via:
import Artyom from 'artyom.js';
const artyom = new Artyom();
artyom.fatality();// use this to stop any of
setTimeout(function(){// if you use artyom.fatality , wait 250 ms to initialize again.
artyom.initialize({
lang: "en-GB",// A lot of languages are supported. Read the docs !
continuous: true,// Artyom will listen forever
listen: true, // Start recognizing
debug: true, // Show everything in the console
speed: 1 // talk normally
}).then(function(){
console.log("Ready to roll.");
artyom.say('Ready to roll.');
});
}, 250);
And for quite some time, it was working as expected. However now when I try to execute artyom.say() it doesn't speak. There is also no debug log for the speech synthesis. It is still recognizing commands I defined and acting accordingly, it's just the speech synthesis that isn't working.
Side note, I have tried reloading the page, and clearing the garbage but still nothing.
Another side note, I'm also playing music on the same page, via Howler, but it was working fine together before. I din't think anything was changed, it just doesn't say anything now.
Any ideas?
The text was updated successfully, but these errors were encountered:
Update on this, it seems to work again if I close and re-open Chrome. Going to see how long it takes to stop speaking again and will report back if it does.
Hi there,
I'm encountering a bug with Artyom.
I've created and initialized an instance of Artyom via:
And for quite some time, it was working as expected. However now when I try to execute
artyom.say()
it doesn't speak. There is also no debug log for the speech synthesis. It is still recognizing commands I defined and acting accordingly, it's just the speech synthesis that isn't working.Side note, I have tried reloading the page, and clearing the garbage but still nothing.
Another side note, I'm also playing music on the same page, via Howler, but it was working fine together before. I din't think anything was changed, it just doesn't say anything now.
Any ideas?
The text was updated successfully, but these errors were encountered: