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
We need a solution that will resample audio (from live Zoom call) sample rate from 32000 to 44100. Looks like the resampler can do this. We have ByteBuffer from the ZoomSDK and we just need to resample.
We tried with both resample.resample(rawData.getBuffer(), processed, rawData.getBuffer().remaining()); resample.resampleEx(rawData.getBuffer(), processed, rawData.getBuffer().remaining());
but is not working, the audio is still bad.
Can this be done with your library?
The text was updated successfully, but these errors were encountered:
We need a solution that will resample audio (from live Zoom call) sample rate from 32000 to 44100. Looks like the resampler can do this. We have ByteBuffer from the ZoomSDK and we just need to resample.
We tried with both
resample.resample(rawData.getBuffer(), processed, rawData.getBuffer().remaining()); resample.resampleEx(rawData.getBuffer(), processed, rawData.getBuffer().remaining());
but is not working, the audio is still bad.
Can this be done with your library?
The text was updated successfully, but these errors were encountered: