recorder_init_stream method
Implementation
int recorder_init_stream(
ffi.Pointer<Recorder> self,
int sample_rate,
int channels,
int sound_format,
int buffer_duration_seconds,
) {
return _recorder_init_stream(
self,
sample_rate,
channels,
sound_format,
buffer_duration_seconds,
);
}