New Post: Playing ALaw memorystream
Hi, I'm stuck with this simple task: - I have a memorystream containing raw data (ALaw compressed) - I want to play this memorystream as it is (I don't want to write it to the disk) How ho I do that?
View ArticleNew Post: CreateWaveFile and it's progress
Sweet deal, did exactly as you suggested and works like a charm. Thanks!
View ArticleNew Post: MP3 fade in/out
hi I'm afraid not so far, but with the new ISampleProvider interface in NAudio 1.5 it will become much easier to implement as you won't have to worry about bit conversion. Mark
View ArticleNew Post: Playing ALaw memorystream
1st of all, sorry for the double post, it was not done on purpose. I managed to save a wave file to disk and this is cool, but it's not my scope. The raw data comes from MS TTS (Text to speech) and it...
View ArticleNew Post: Playing ALaw memorystream
Pass your RawSourceStream into WaveFormatConversionStream.CreatePcmStream(). The output from that can be played with WaveOut. Mark
View ArticleNew Post: Playing ALaw memorystream
Thanks Mark! It works! Have no idea if this is completely correct, but it works and I'm happy with it. memStream.Position = 0; using (RawSourceWaveStream NewReader = new RawSourceWaveStream(memStream,...
View ArticleNew Post: Playing ALaw memorystream
you're on the right lines, but your WaveOut object is in danger of getting garbage collected before playback has finished. wo.Play just starts playback, so you are closing your input stream before it...
View ArticleNew Post: Ensambler problem
Hi!! recently I installed Naudio but when i go to compiler the VBS2010 send me a problem. http://img192.imageshack.us/img192/5528/sinttulouct.png I have W7 x32 and visual basic studio on x86 Sorry for...
View ArticleNew Post: Ensambler problem
I'm very surprised you see that on x86, are you sure you aren't running x64? In any case, I suggest you upgrade to NAudio 1.5 which is compiled for AnyCPU Mark
View ArticleNew Post: Ensambler problem
See: http://img13.imageshack.us/img13/3972/sinttulofx.png Can you explain me how I can upgrade 1.5 Naudio please?
View ArticleNew Post: Ensambler problem
just click Downloads above and replace your copy of NAudio.dll with the new one.
View ArticleNew Post: Ensambler problem
ok, now i have another problem: http://img202.imageshack.us/img202/3170/sinttuloezb.png thanks for replay
View ArticleNew Post: Ensambler problem
that is not a problem in NAudio, but in DjKinect, which is an application I don't know anything about Mark
View ArticleNew Post: Playing ALaw memorystream
LOL, 2 days later I faced the problem... I am ashamed to ask, but... what should I do instead? When closing the form containing the above code I receive am error: AcmStreamHEader dispose was not called...
View ArticleNew Post: Playing ALaw memorystream
Save ws to a class member variable, and when you have finished playing, call ws.Dispose() out of interest, what doesn't work in VS2010 express? Mark
View ArticleNew Post: Playing ALaw memorystream
well, I fixed the issue with VS2010, just deleting the Ntest project. It had something to do with nuget which is not installed in my system
View ArticleNew Post: AcmStream Dispose was not called
I seem to have exactly the same problem. Looking at the code, it could happen if MP3FileReader is created but not disposed. This doesn't seem to be the case I have. I am simply going to disable that...
View Article