New Post: Error when play/stop recording
Hi Mark, I have a problem with start/stop playing recording. I have to play a sample which have to be recorded to disk every time it is played because it could be set with different volume level. I do...
View ArticleNew Comment on "MP3"
Doesn't work here. In a 4.0 WPF, it loads painfully, then the mp3 is playing chunk by chunk.
View ArticleNew Post: Error when play/stop recording
call Dispose when you have finished with any input or output devises
View ArticleNew Post: How to play an a-law-encoded network stream
there is an example of playing a-law from the network in the NAudio source-code. Look at the network streaming demo in the NAudioDemo project. The basic solution is to use a BufferedWaveProvider, and...
View ArticleNew Post: Error when play/stop recording
I call Dispose only for recorder object. For the playbackDevice I only use 1 instance and just call Play/Stop on every request. I thought it is not a good idea to create new WaveOut instance every time...
View ArticleNew Post: ASIO input
Hi, Based on a recent request: Sorry it's taken a while to get around to this, but here's what I did. It probably isn't good style with respect to the rest of naudio and it's based on what may now be a...
View ArticleNew Post: How to play an a-law-encoded network stream
Hi Mark, inspired by the network streaming demo (NetworkChatPanel.cs) I simplified the code like this: BufferedWaveProvider myBufferedWaveProvider = new...
View ArticleNew Post: How do i create a wave viewer without having to play the music?
I'm new to NAudio and need to create a wave viewer, but do not want to play the selected song, How do you doing? Tanks. PS: I'm developing from the demo version, I can I do?
View ArticleNew Post: How to play an a-law-encoded network stream
You can't directly play A-law audio. At some point it must be converted to PCM with a WaveFormatConversionStream. You can do that either before you put it into the BufferedWaveProvider, or convert it...
View ArticleNew Post: How do i create a wave viewer without having to play the music?
you just need to call the Read method repeatedly on the WaveProvider that you would normally give to WaveOut. This pulls all the audio data through and the events that the waveform drawer is listening...
View ArticleNew Post: ASIO input
thanks for this, I'll refer back to this when I get round to adding ASIO in support which is long overdue
View ArticleCommented 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: How do i create a wave viewer without having to play the music?
It worked! Thank you!
View ArticleNew Post: Merge/mix several wav files into one
Hi, I have several wav files (for instance, 60 files) that I need to mix into one WAV file, but not by concatenating the wav files, but instead, every wav file must be placed on a specific position...
View ArticleNew Post: Merge/mix several wav files into one
yes, you can do this with NAudio, but I'm afraid there is no demo. You build an audio graph like this: 1) each WAV file is converted into a 32 bit floating point stream2) you then use a...
View ArticleNew Post: Merge/mix several wav files into one
Thank you for your answer. Some of the wav files overlaps, that is to say, maybe the position of a wav file is between the start and end position of another wav file. Point 2) needs some...
View ArticleNew Post: Merge/mix several wav files into one
that is not a problem. the amount of silence is measured from the start of the mixed WAV. it doesn't matter if there are overlaps, since everything will be mixed
View ArticleNew Post: Multimedia application list
Is it possible with NAudio to get a list of all running multimedia applications, i.e. the applications which appear in the standard Windows 7 speakers volume mixer window? Currently I can get the...
View ArticleNew Post: change frequency at runtime
Here is the code of the wavetone class: public class WaveTone : WaveStream { private double frequency; private double amplitude; private double time; public WaveTone(double f, double a) { this.time =...
View ArticleNew Post: How to play multiple wave files simultaniously using ASIO
Hi , I tried this but I am not getting this please provide me with some samples which will be really helpful. Thanks in advance
View Article