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
could you provide an in-memory resampling example that works in memory instead of file pointers?
eg
int16_t in = InMemoryAudioFile;
int16_t out = nullptr;
int inSampleRate = 44100;
int outSampleRate = 48000;
int channelCount = 2;
// resample using soxr_process, assume out is allocatedpushToAudioDevice(out, outSampleRate, channelCount);
delete[] out;
The text was updated successfully, but these errors were encountered:
could you provide an in-memory resampling example that works in memory instead of file pointers?
eg
The text was updated successfully, but these errors were encountered: