Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);
                    }
                }
            }
share|improve this question
1  
what is the exception you see and what line of code? – BrokenGlass Mar 1 '11 at 20:56
basically this code is in loop and run when socket receive new packet after just few itterations "WaveOut device was not close at WaveOut.finalize()" exception came in a messagebox. – Ehtsham Mar 2 '11 at 10:18

2 Answers

http://www.un4seen.com/

bass.dll .NET api

i know its not the answer to your code but its a good music library

share|improve this answer

I have posted an article on my blog explaining how to play back an MP3 stream using NAudio. Essentially you have one thread downloading MP3 frames, decompressing them and storing them in a BufferedWaveProvider. Another thread then plays back using the BufferedWaveProvider as an input.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.