New Post: Dead Board
Is Mark Heath the only person who knows a thing about NAudio?I am fed up with waiting forever for a solution when I am running into a problem because nobody replies here or on stackoverflow. And if...
View ArticleNew Post: Dead Board
TruthfulStatement wrote:Is Mark Heath the only person who knows a thing about NAudio?I am fed up with waiting forever for a solution when I am running into a problem because nobody replies here or on...
View ArticleNew Post: Dead Board
Mark is the creator of NAudio, it is an awesome library and community resource. Mark's been working on this for years, largely by himself.People often only view this board when they have a problem and...
View ArticleNew Post: Dead Board
On Stackoverflow for other kinds of questions you get answers within minutes. Just when it comes to naudio nobody seems to use these dlls but a selected few.I contribute if I can only. A lot of times I...
View ArticleNew Post: Dead Board
TruthfulStatement wrote:I contribute for free on stackoverflow, as everyone else there. So don't give me that hire-someone rap.What username do you use on StackOverflow? As Mark suggested, I think you...
View ArticleNew Post: Dead Board
What username do you use on StackOverflow?Peter FrenAs Mark suggested, I think you should look at Bass.Net That is avoiding the question especially as I have already done a lot using naudio. Restarting...
View ArticleNew Post: Dead Board
TruthfulStatement wrote:What username do you use on StackOverflow?Peter FrenAs Mark suggested, I think you should look at Bass.Net That is avoiding the question especially as I have already done a lot...
View ArticleNew Post: Dead Board
You see I expected this. You were not asking for my name there out of interest but to find reason to prove me wrong. You have this childish expectation that contributing is somehow related to the time...
View ArticleNew Post: Dead Board
TruthfulStatement wrote:You see I expected this. You were not asking for my name there out of interest but to find reason to prove me wrong. I don't think I actually proved you wrong but as I said I...
View ArticleNew Post: .DAT File from DDP Fileset
Hi Mark,I was wondering if NAudio would playback a .DAT File from a DDP fileset?The format for the DAT file from DDP is always 44.1 Stereo 16bit.Thanks, Wyatt
View ArticleNew Post: .DAT File from DDP Fileset
Is it PCM, and is the byte ordering little endian? If so you could just use a RawSourceAudioStream, passing in a new WaveFormat(44100,16,2) and a FileStream to the .DAT file.Mark
View ArticleNew Post: How to generate wav with a specific length
There are several ways you can do this, but one is for WaveTone to stop returning audio after five seconds. Since you are already tracking a "time" variable, which is the total number of samples, you...
View ArticleUpdated Wiki: Documentation
The NAudio Documentation WikiNAudio FAQWhat is NAudio?NAudio is an open source audio API for .NET written in C# by Mark Heath, with contributions from many other developers. It is intended to provide a...
View ArticleNew Post: How to generate wav with a specific length
Hi markheathI've modified the code. Buy i dont understand how to stop Read function. It's continuing calling and the sound is keep playing. What should i do? publicoverrideint Read(byte[] buffer, int...
View ArticleNew Post: How to generate wav with a specific length
as I said above, Read must return 0 not count when you reach the end. e.g.: return (time < (44100 * 3)) ? count : 0;
View ArticleNew Post: How to generate wav with a specific length
Sorry for asking dummy questions but nothing has changed:publicoverrideint Read(byte[] buffer, int offset, int count) {int samples = count / 2;for (int i = 0; i < samples && time < (44100...
View ArticleNew Post: How to generate wav with a specific length
oh, sorry, I see that time is not in samples. replace both instances of (44100 * 3) with 3. Also, you don't need to be using BlockAlignReduction stream.
View ArticleNew Post: How to generate wav with a specific length
Holy Lord! it works properly^) thx. But what should i use instead of BlockAlignReductionStream?
View ArticleNew Post: How to generate wav with a specific length
nothing. just pass tone directly into Init
View ArticleNew Post: .DAT File from DDP Fileset
Would it be possible to do this from the source, like was metioned in this thread?http://naudio.codeplex.com/discussions/254145Thanks, Wyatt
View Article