Top "Naudio" questions

NAudio is an open source audio library for .NET, supporting audio playback, recording and sample manipulation as well as reading and writing various audio file formats.

Play audio from a stream using C#

Is there a way in C# to play audio (for example, MP3) direcly from a System.IO.Stream that for …

.net audio stream mp3 naudio
naudio record sound from microphone then save

I'm having some issues with naudio and saving sound recordings. The code I currently have works to the point where …

c# naudio
change format from wav to mp3 in memory stream in NAudio

Hi there iam trying to convert text to speech (wav) in the memorystream convert it to mp3 and then play …

c# asp.net audio naudio
How to play a MP3 file using NAudio

WaveStream waveStream = new Mp3FileReader(mp3FileToPlay); var waveOut = new WaveOut(); waveOut.Init(waveStream); waveOut.Play(); This throws an exception: …

c# mp3 naudio
change wav file ( to 16KHz and 8bit ) with using NAudio

I want to change a WAV file to 8KHz and 8bit using NAudio. WaveFormat format1 = new WaveFormat(8000, 8, 1); byte[] waveByte = HelperClass.…

c# .net audio wav naudio
Record input from NAudio WaveIn, and output to NAudio WaveOut

I want to be able to get input from a microphone device via NAudio.WaveIn, and then output that exact …

c# naudio
Enumerate Recording Devices in NAudio

How can you get a list of all the recording devices on a computer using NAudio? When you want to …

c# naudio
Record live audio from mic input and save simultanously

I was trying to develop a Voice recorder in C#. I have tried many ways, like NAudio, DirectX, Microsoft.Xna.…

c# xna directx audio-recording naudio
Stream wrapper to make Stream seekable?

I have a readonly System.IO.Stream implementation that is not seekable (and its Position always returns 0). I need to …

c# .net stream naudio seek
Is Media Foundation supported on Windows 2012 64 bit server?

Is Media Foundation supported on Windows 2012 64 bit server? We can not have Windows 7 or Windows 8 as the server and that's …

c#-4.0 naudio lame