Questions tagged [responsivevoice]

ResponsiveVoice.JS is a text to speech API.

ResponsiveVoice.JS is a text to speech API.

36 questions
5
votes
1 answer

ResponsiveVoice.js - Getting Around iOS TTS Required Direct User Interaction

On the ResponsiveVoice.JS website under the quirks section it states: iOS TTS can’t be triggered without a direct user interaction, ResponsiveVoice JS resolves this But, for the life of me, I can't get around this direct user interaction…
Preston Connors
  • 397
  • 3
  • 14
3
votes
1 answer

ResponsiveVoice blocked by CORS

I try building a function that reads digits with defined delay between one another. { ... play : function (digits, delay = 500) { if (digits && digits.length > 0) { responsiveVoice.speak(digits[0], "Czech Female", { rate: 0.7, …
Jirmed
  • 373
  • 2
  • 13
3
votes
4 answers

Run ResponsiveVoice speech on page load

This works properly, it speaks the text area on click, but how can I change it to speak onload?
3
votes
1 answer

Javascript img change statement fires too early

I'm making a simulator of the Smoke and Carbon Monoxide Alarm Nest Protect, by Nest. But when I press the button (click) the inner ring doesn't turn blue as it's supposed to. It speaks, as I used ResponsiveVoice, but it just doesn't light up! Here's…
ry00000
  • 33
  • 5
3
votes
1 answer

How to download speech (audio) created from text using Text-to-speech responsivevoice.js?

I'm using responsivevoice.js JavaScript library to listen to articles online. It's the best free Text-to-speech I found, better then lots of paid ones I tried, but I need to download the audio as well and I have no idea on how to do that. Any ideas…
mhlavacka
  • 691
  • 11
  • 25
2
votes
1 answer

Responsivevoice jQuery does not work in Firefox

I am trying to test/make custom buttons for responsivevoice (Play, Pause, Resume, Stop). Most of it works, but my test won't play in Firefox. Also I am using an old jQuery version (1.4) for now. I might be able to use a new jQuery version if that…
eye-wonder
  • 1,181
  • 9
  • 17
2
votes
1 answer

ResponsiveVoice calls onend callback only once for multiple utterances

I want to highlight particular para/list with their corresponding voice. Is there any callback in responsivevoice.js. I got onend as callback function.But it is not working . whenever I am putting console instead of highlight , it is producing …
2
votes
1 answer

How to detect end of speech in ResponsiveVoice JS

I'm working with the ResponsiveVoice text to speech library. Everything is working perfectly fine except there seems to be no way of detecting the end of speech in the API. On the responsiveVoice object I'm able to see the OnFinishedPlaying callback…
11thdimension
  • 10,333
  • 4
  • 33
  • 71
1
vote
0 answers

responsiveVoice not working after page load, click needed

I sometimes need to use refresh of my website. The problem is that the responsiveVoice voice function is always interrupted and does not resume until the page is anywhere clicked. Minimized example (no sound after load, after clicking the sound will…
jarinek
  • 13
  • 3
1
vote
0 answers

Language Tamil Male give 2 different voices and male or female voices for big story

I Used jquery webspeaker for text to speach.I gave language option as "Tamil Male" $('.speaker-article').webSpeaker({language: "Tamil Male"}); sample site url is here It produces both female or male voices for big story.But,we need only one…
kamalav
  • 1,190
  • 4
  • 14
  • 31
1
vote
0 answers

ResponsiveVoice.js sometimes speak on Indonesian Female voice when i use Indonesian male voice

Hello i successfully implementing 'Indonesian Male' Text-To-Speech using ResponsiveVoice.js but sometimes it's returning 'Female Voice', why that happen ? here is my code var paramSpeak = { onstart: onStartSpeak, onend: onEndSpeak, …
1
vote
0 answers

ResponsiveVoice not working when page load

Why this code works well on my Android Tablet (Samsung) + Desktop Windows 10 , but not on my 2 Android Phone (LG4) and Samsung 3 Calling this…
1
vote
1 answer

Jquery div fill from PHP just redirects to PHP page?

I am trying to pull a string from a looping PHP variable and load it as it updates into a div using jQuery. The problem is, it just redirects me to the PHP page when the conditions are met instead of pulling info from it and putting that info in a…
triops124
  • 27
  • 7
1
vote
1 answer

Responsive Voice: Showing a Div After Detecting End of Audio to be Played

I am using responsivevoice.js to play audio for a simulated tutorial. I am hiding and showing divs based on where the learner is within the process of four total steps. The problem is the next step shows before the audio is finished playing. For…
Jeremy Person
  • 171
  • 1
  • 3
  • 13
1
vote
2 answers

Responsive voice jquery plugin not working inside loop

im trying to make responsive voice read out each sentences and there must be a 1 minute gap between each readouts. function read(){ responsiveVoice.speak('قلم','Arabic Female'); } var a =…
1
2 3