Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mespeak on ipad #68

Open
posowoco opened this issue Oct 8, 2019 · 1 comment
Open

mespeak on ipad #68

posowoco opened this issue Oct 8, 2019 · 1 comment

Comments

@posowoco
Copy link

posowoco commented Oct 8, 2019

I had to change mespeak.full.js line 1048 to these lines for it to work on an ipad
from
audioContext.connect(audioContext.destination);
(source.noteOn || source.start)(0)
to:
source.connect(audioContext.destination);
if (source.start) {
source.start(0);
} else if (source.noteOn) {
source.noteOn(0);
}

@julian-hecker
Copy link

@posowoco I have also been unable to use this on an ipad, and I would very much like to have it fixed! Could you create / have you created a pull request for this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants