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
If you are trying to load local file from the disk then there is something with the way you do it. I do not think it has anything to do with the plugin. It is designed to work with URLs.
Anything that works with <audio/> standard HTML element should work with the plugin.
Here is my way to dynamically obtain audio files:
const uint8Buffer = Uint8Array.from(value);
const wav = new Blob([uint8Buffer]);
myAudio = window.URL.createObjectURL(wav);
The text was updated successfully, but these errors were encountered: