New Post: How to use NAudio with video file !
Download the source code and build it yourself. Or if you use NuGet, you can get a pre-release build from nuget.
View ArticleNew Post: How to use NAudio with video file !
I don't see where the source code of MediaFoundationReader or 1.7. I was so upset about this. I tried to understand NAudio all day. Please help me !
View ArticleNew Post: FFT results
Hello, I am new to NAudio and am playing with the NAudioWpfDemo FFT code and I am trying to understand the FFT results. I am using the demo's SampleAggregator.cs and AudioPlayback.cs with an _fftlength...
View ArticleCommented Unassigned: Problem with WavOut.Eventhandler [16393]
HiI have been trying to use the, playbackstopped eventhandler on the wavout class. I am trying to get a playlist to cycle through audio tracks so at the end of each track it evaluates the playlist and...
View ArticleNew Post: Netwok stream of loopback recording
hi am trying to stream the WasapiLoopbackCapture .. but the proble is that the WasapiLoopbackCapture writes a wav file of 32bits per sample wich VLC netwok stream reader cannot read . waveIn = new...
View ArticleNew Post: Netwok stream of loopback recording
convert it to 16 bit before you send it. Is it 32 bit int or 32 bit float you are capturing. The helper methods on the BitConverter will help you make the conversion,.
View ArticleNew Post: Wav file amplitude a a given time interval
WaveFileReader lets you examine each sample individually. For "amplitude", often you will actually look for the maximum sample value over a short period.
View ArticleNew Post: Which way is best for sampling both left and right channels?
Quick question... Which way is best for sampling both left and right channels? private ISampleProvider CreateInputStream(string fileName) { fileStream = OpenWavStream(fileName); var inputStream = new...
View ArticleNew Post: Windows 8 resampling
Hi Mark! I'm porting application from Windows Phone. I was able to record PCM with your outstanding library, but I do not what classes should I use to convert recorded 44KHz, 32 bit sound to 18Khz, 16...
View ArticleNew Post: Windows 8 resampling
please read my article here:http://www.codeproject.com/Articles/501521/How-to-convert-between-most-audio-formats-in-NET It explains the various options for bit depth changing and resampling (which...
View ArticleNew Post: Which way is best for sampling both left and right channels?
the first way if you were drawing separate waveforms for left and right
View ArticleNew Post: Using WasapiLoopbackCapture to do a sound visualizer
hello i'm trying to do a visualizer using Naudio wasapi loop back capture feature, but i have a problem using samples. NAudio.Wave.WasapiLoopbackCapture wasapi = new...
View ArticleNew Post: Which way is best for sampling both left and right channels?
markheath wrote: the first way if you were drawing separate waveforms for left and right Thank you. Would the second way be appropriate for "mixing" the two channels if I was drawing one waveform?
View ArticleNew Post: Increase only low bit section of a song
hi, i have a problem on a project.I want to only Increase Low bit section Of a track.High bit section are same.i follow and use naudio project. I want particular portion of code.
View ArticleNew Post: Naudio Playing problem
where playing file there is a stuck when minimize the window or maximize the window. Regards, Hinshin
View ArticleNew Post: From WaveIn To SampleProvider to WaveOut
Hello, Could you provide a skeletton (C#) for :Wave In to sampleprovider chain to wave outFilereader to sampleprovider chain to waveout wavein to sampleprovider chain to FileWriter. You never give a...
View ArticleNew Post: From WaveIn To SampleProvider to WaveOut
if you want to pipe waveIn to an output, use BufferedWaveProvider. For your second example, AudioFileReader does exactly what you are asking. Look at the code to see how it does it To a filewriter -...
View ArticleNew Post: How to get maximum DB value of a section in a mp3 song?
hi I use naudio project as a reference. I want to How to get maximum DB value of a section in a mp3 song. pls help me.
View Article