How can I see the current queue-lenght in a MediaPlayer AudioStreamer?
The PlayerBufferSize only showes me the general maximal lenght, not how many bytes are in it now, but not played yet. Also the _PlaybackComplete event is never fired.
The PlayerBufferSize only showes me the general maximal lenght, not how many bytes are in it now, but not played yet. Also the _PlaybackComplete event is never fired.
B4X:
Dim streamer As AudioStreamer
Dim iMax As Int = streamer.PlayerBufferSize
streamer.Write(bData) 'how many bytes can I put now?
streamer.StartPlaying