The τ Player API
feedFromStream().
feedFromStream()
feedFromStream()
Dart API: feedFromStream().
This is the verb that you use when you want to play live PCM data synchronously. This procedure returns a Future. It is very important that you wait that this Future is completed before trying to play another buffer.
Example:
This example shows how to play Live data, with Back Pressure from Flutter Sound
This example shows how to play some real time sound effects synchronously.
await myPlayer.startPlayerFromStream(codec: Codec.pcm16, numChannels: 1, sampleRate: 48000);
await myPlayer.feedFromStream(aBuffer);
await myPlayer.feedFromStream(anotherBuffer);
await myPlayer.feedFromStream(myOtherBuffer);
await myPlayer.stopPlayer();
Lorem ipsum ...
</div>
Last updated
Was this helpful?