Stop the Speech
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Stop the Speech
Hello,
I am using the below code to convert text to speech for my AR experience.
$scope.speak = function(){
var spokenText = $scope.view.wdg["label-1"].text;
var msg = new SpeechSynthesisUtterance(spokenText);
window.speechSynthesis.speak(msg);
}
Help I need: I need to be able to stop the speech in middle(in case the speech/text is too long) and move to the next step.
Any thoughts on how this can be achieved?
Avinash
Solved! Go to Solution.
- Labels:
-
Best Practices
-
Coding
-
Design
-
Troubleshooting
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @agangaiah ,
as we discuss this outside the community , you informed me that you already found the solution. Only for the sake of the completeness I will post your solution here:
//=============
//Below method works..
//you can add a button say STOP....call this function stopallaudio()...code as below
//=============
$scope.stopallaudio = function(){
window.speechSynthesis.cancel();
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @agangaiah ,
as we discuss this outside the community , you informed me that you already found the solution. Only for the sake of the completeness I will post your solution here:
//=============
//Below method works..
//you can add a button say STOP....call this function stopallaudio()...code as below
//=============
$scope.stopallaudio = function(){
window.speechSynthesis.cancel();
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Yes worked. Thanks
- Tags:
- es
