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
The SDK works fine in Chrome (not iOS Chrome), but calling startContinuousRecognitionAsync in Safari immediately throws this error:
Browser does not support Web Audio API (AudioContext is not available).
After checking out the source code, it appears the error is throwing at this place:
if (typeof (AudioContext) === "undefined") {
throw new Error("Browser does not support Web Audio API (AudioContext is not available).");
}
As far as I know, Safari does support AudioContext but it requires 'webkit' prefix.
Is there a technical reason why webkitAudioContext is not checked and used for Safari?
The text was updated successfully, but these errors were encountered:
Rextyj
changed the title
Receive not supported error in Safari
Receive "not supported" error in Safari
Jul 22, 2020
The SDK works fine in Chrome (not iOS Chrome), but calling startContinuousRecognitionAsync in Safari immediately throws this error:
After checking out the source code, it appears the error is throwing at this place:
As far as I know, Safari does support AudioContext but it requires 'webkit' prefix.
Is there a technical reason why webkitAudioContext is not checked and used for Safari?
The text was updated successfully, but these errors were encountered: