I want to play mp3 stream in my c# application. i have a server application which capture wave audio and convert it into mp3 and write on network stream.Client read this stream and have to play this mp3 data. i tried NAudio with the following code example but unable to run continuous stream as it results in exception
using (WaveStream blockAlignedStream =
new BlockAlignReductionStream(
WaveFormatConversionStream.CreatePcmStream(
new Mp3FileReader(ms))))
{
using (WaveOut waveOut = new WaveOut(WaveCallbackInfo.FunctionCallback()))
{
waveOut.Init(blockAlignedStream);
waveOut.Play();
while (waveOut.PlaybackState == PlaybackState.Playing )
{
System.Threading.Thread.Sleep(100);
}
}
}