New Post: AudioSubType Complement
I put in a full version ISSUE TRACKER.http://naudio.codeplex.com/workitem/16375I looked to see if your option is possible, I continued my research.
View ArticleNew Post: WaveChannel32.Read never returns 0
I was trying to convert 16bit PCM files to IeeeFloat and encountered a problem where the files grew until hitting the 2GB limit.My code was: publicstaticvoid ImportAudio3(string sourceFileName, string...
View ArticleNew Post: AudioSubType Complement
I had already done tests to avoid the latency to the first read.But I have not found another solution.
View ArticleNew Post: AudioSubType Complement
that's good. I wanted to make one that implements ISampleProvider, so I'll look at your solution. Another thing that I want to add is to let MF handle resampling at the reader stage, so if you are...
View ArticleNew Post: WaveChannel32.Read never returns 0
set PadWithZeros to false or preferably use Wave16ToFloatProvider instead. Really I want to obsolete WaveChannel32 and WaveMixerStream, as there are better ways to do mixing but a lot of people are...
View ArticleNew Post: How to code circullar buffer to create a delay and used the wavein...
Hi all,I have seen this topic, and I have a question like the one above. here is my code;private WaveIn sourceStream = null;private WaveOut waveOut = null;private BufferedWaveProvider bufferedWaveIn =...
View ArticleNew Post: How to code circullar buffer to create a delay and used the wavein...
Implement an IWaveProvider that in its Read method, just returns empty buffers until a total of 15 * WaveFormat.AverageBytesPerSecond have been requested. Then start returning data from the...
View ArticleNew Post: Speex Echo Cancellation with NAudio?
hiCould you really get it to work? I did lots of try but I just hear all of the voice with echo, like no any echo canceller is there.Just a difference is that I changed libspeex.dll to libspeexdsp.dll....
View ArticleNew Post: How to code circullar buffer to create a delay and used the wavein...
Sorry but I think that I could not define the question well.I am routing waveIn input to waveout device at real time.Then after I want to listen 15 seconds history so I want to roll back to 15 seconds...
View ArticleNew Post: AudioSubType Complement
I thought IMFTransform used to make convertionsI found a simple example:http://code.google.com/p/bitspersampleconv2/wiki/HowToUseResamplerMFT
View ArticleNew Post: How to code circullar buffer to create a delay and used the wavein...
you'd need to make your own customised version of BufferedWaveProvider in order to do this.
View ArticleNew Post: AudioSubType Complement
yes, I will be reimplementing the DMO Resampler but using MFT (it's the same COM object that implements both interfaces). But from what I can see if you ask the reader for a particular sample rate it...
View ArticleSource code checked in, #a09115bcae84
adding some new audio format subtypes (thans ManuN) and reformatting some GUIDs
View ArticleNew Post: AcmNotPossible calling acmStreamOpen
Here is a more detailed description:OS: Windows 7 Professional 64-bitNAudio: 1.6.0Current Code: WaveFileReader reader = new NAudio.Wave.WaveFileReader("a.wav"); WaveStream...
View ArticleNew Post: AcmNotPossible calling acmStreamOpen
you should be starting with 16 bit audio, not 8 bit. The a-law encoder converts from 16 bit to 8 bit.
View ArticleNew Post: AcmNotPossible calling acmStreamOpen
Thanks a lot. That works.Is there any overview which conversions are supported? I think it depends on the codec!?
View ArticleNew Post: AcmNotPossible calling acmStreamOpen
Every codec has a list of supported input and output formats. You can look at these using the ACM demo in the NAudio Demo project.
View Article