Quantcast
Channel: NAudio
Browsing all 5831 articles
Browse latest View live

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 Article


New 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 Article


New Post: AudioSubType Complement

I had already done tests to avoid the latency to the first read.But I have not found another solution.

View Article

New 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 Article

New 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 Article


New 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 Article

New 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 Article

New 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 Article


New 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 Article


New Post: AudioSubType Complement

I thought IMFTransform used to make convertionsI found a simple example:http://code.google.com/p/bitspersampleconv2/wiki/HowToUseResamplerMFT

View Article

New 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 Article

New 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 Article

New Post: How to code circullar buffer to create a delay and used the wavein...

Ok.Thanks Mark.

View Article


New Post: AudioSubType Complement

I will try this option to see.

View Article

Source code checked in, #a09115bcae84

adding some new audio format subtypes (thans ManuN) and reformatting some GUIDs

View Article


New Post: AudioSubType Complement

Lack of time, abandoned.

View Article

New 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 Article


New 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 Article

New 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 Article

New 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
Browsing all 5831 articles
Browse latest View live