Alex Zhukov

Results 24 comments of Alex Zhukov

yeah, i need server side only i am very new to jawampa codebase so i cant tell right off the bat which interfaces are server-side do you have a list...

@vamsi360 seems like nobody is working on it :-/

@MCMrARM great work! Kudos

You need to decode your high bitrate mp3 first and then encode it with lamejs. You can use web audio api for it.

i cant tell from looking at the code but it looks like you are not feeding the encoder properly

sounds like you are calling `flush()` too often, try calling it only at the end of encode

> Can I share the code file with you? You want me to call flush after sending to the server or before. Post the most relevant snippet here, i'll take...

``` var data = new Float32Array(arrayBuffer); var out = new Int16Array(arrayBuffer.length); ``` change to ``` var data = new Float32Array(arrayBuffer); var out = new Int16Array(data.length); ```

can you create an end-to-end example i can reproduce here? i mean no worker code, no messages

I can’t reproduce the problem using the code you posted. Sent from my iPhone > On Sep 16, 2019, at 6:05 PM, Durga Parshad wrote: > > Above is my...