configure abstract method

Future<void> configure(
  1. String deviceId,
  2. MiniAVAudioInfo format, {
  3. int bufferFrames = 0,
})

Configure the output stream. format describes the PCM you will push (float32 is the canonical layout). bufferFrames is the ring depth (0 = ~100 ms at the format's sample rate).

Implementation

Future<void> configure(
  String deviceId,
  MiniAVAudioInfo format, {
  int bufferFrames = 0,
});