Closed Issue: NAudio resampler exception when deployed to Azure [16350]
I'm resampling wav file for my web app using ResamplerDmoStream. This works fine running locally, but I'm getting a registration error when deployed to Azure: Exception thrown =...
View ArticleNew Post: Clarify WaveOutEvent.Init
If you call Init twice, various things that have been initialised won't be properly disposed of. It may work, but it will leak memory.
View ArticleNew Post: Normalize mp3 audio
How to use NAudio library to normalize mp3 file. In ImpulseResponseConvolution there is normalize method, but how to normalize an mp3 file?
View ArticleNew Post: Exporting sample from soundfont
It is because the sample data is a byte array, whilst the offsets are measured in samples, which are 16 bits, so take two bytes each.
View ArticleNew Post: How to connect( concatenate) 2 or more .wav files in NAudio??
there is a FadeInOutSampleProvider recently checked into NAudio which can be used either directly, or as an example to help you with your own fading in / out. Cross-fades are also sometimes used when...
View ArticleNew Post: Repositioning stream using Read/Seek/Skip?
On streams that don't support seeking, you can only move forwards and you have to use Read. Otherwise, setting the Position/Seek basically amount to the same thing. They are only there because...
View ArticleNew Post: Normalize mp3 audio
To normalize an MP3 file, you would first need to convert it to WAV (using the Mp3FileReader class). Then you perform normalisation on the samples (NAudio does not have a class that does this). Then...
View ArticleNew Post: Windows 8 WinRT Metro Style Support
Hi Mark, Do you have any plan to release a WinRT version of NAudio? I am currently using NAudio 1.5 in my WinRT Javascript application to convert MP3 to WAV using Naudio. It works like a charm but...
View ArticleNew Post: Windows 8 WinRT Metro Style Support
I'd love to make a WinRT version of NAudio, but as you have discovered, NAudio contains wrappers for lots of APIs that are disallowed in WinRT (I assume this will include all waveIn, waveOut, and acm...
View ArticleSource code checked in, #d6964d7e51df
making more properties visible on Mp3Frame, and Mp3FileReader now allows pluggable MP3 frame decompressor
View ArticleNew Post: API for Position Reporting
Mark, I'm working on a position reporting patch for NAudio's wave player classes (and maybe the wave in stuff). Do you want that functionality split to a separate interface (IWavePosition), or added...
View ArticleNew Post: AcmStreamHeader dispose was not called
Hi, I get an exception when play sound by NAudio's WaveOut Like: AcmStreamHeader dispose was not called at AcmStreamHeader.Finalized()...
View ArticleNew Post: Convert wav to ulaw wav??
I want to take a wave file (in this example it is 1,536 Kbps, 48 KHz, 16 bit, 2 channel, PCM) and convert it to a wave file that is 64 Kbps, 8,000 Hz, 8 bits, 1 channel, ADPCM(CCITT) (U-Law). My...
View ArticleNew Post: Visual Studio 2012 express - NAudio Components don't show in toolbox
Hi Guys, Maybe you can help me out here, I have added the naudio.dll as a reference to a new C# project using Visual Studio 2012 express for desktop. But the visual Components do not show up in my...
View ArticleNew Post: Convert wav to ulaw wav??
you need to go in two steps (two waveformatconversionstreams). First go to mono 8kHz 16bit, then go to mulaw Mark
View ArticleNew Post: WaveFloatTo16Provider class: Only PCM supported
This is my first project involved with NAudio... In the WaveFloatTo16Provider class, should the "PCM" in this "Only PCM supported" message be "IeeeFloat" instead?
View ArticleNew Post: Visual Studio 2012 express - NAudio Components don't show in toolbox
Ok, so it was indeed a newbie c# problem. - Just incase someone googles this thread, here is how to get the components into the toolbox: 1) right click into the toolbox 2) click "Choose items" 3) in...
View ArticleNew Post: Newbie: Kinect service ==>Byte array to speaker
Hi, I am a newbie and so my knoweldge on sur the language (english and C#) are not perferct, that why i need lot of explanation. Here is the problem: I used the kinet service with success for...
View Article