Samir Das
Samir Das
I wish I could solve this problem!
this library uses a[ web audio library](https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API) so it does not need any video or audio tag
It expects a single byte array. In fact, this player divides the provided buffer into multiple channels eventually [https://github.com/samirkumardas/pcm-player/blob/master/pcm-player.js#L88](url). You can modify the `flash` and `feed` methods as you have...
I usually get click noise most of the time. Very difficult to tell the reasons. You can try writing buffer into a file. Then play the file using a player...
> In my specific code base, I actually had to also make a condition where if the startTime > currentTime then startTime = currentTime. I'm just confused on why the...
The player itself does not have an event option. If you want to access to `audioContext` instance, you can do it through `player. audioCtx` where `player` is an instance of...
You don't need to convert into Float32Array. You can feed Uint8Array data directly when you choose the `encoding` to `8bitInt ` while instantiating the PCM player. Also, make sure you...
I am not sure why you are getting an error. It plays well with libopus.js that I can say. You can check [this repository](https://github.com/samirkumardas/opus-to-pcm) where it uses libopus.js as a...
Did you mean your provide `encoding: '16bitInt'` and it did not play? As your PCM data is 16bit, you must provide encoding `16bitInt` NOT `8bitint` Also, the conversation you are...
Have you updated your convertBlock code? Can you share new one?