New Post: Count the times audio level rises above a level
I'd suggest looking at noise gate algorithms, as you could then count the number of times the gate opens and shuts
View ArticleNew Post: WasapiLoopback to 16bit?
I want to use it as sending through udp. Like a waveinevent, udpClient.Send(e.Buffer, e.BytesRecorded, otherPartyIP.Address.ToString(), 1500); I want to do like that, but i need to change it to 16 bit...
View ArticleNew Post: WasapiLoopback to 16bit?
then I'd just use the technique I mentioned above then. You can speed it up using WaveBuffer if you know how. Bind a WaveBuffer to the recorded byte array and you can access each sample individually....
View ArticleNew Post: WasapiLoopback to 16bit?
Well this is way beyond me, will have to read up on this. I can see what you are saying, but i can´t understand it (new to c#), but hopefully it will get me somewhere. Thanks
View ArticleNew Post: Wavein vs WaveinEvent?
well i know, but, is it possible to set the priority to high or something, as you mentioned earlier? as perhaps that will solve the problem i am having. Also what does number of buffer do? how does it...
View ArticleCreated Unassigned: NAudio does not check the .CanSeek Property of Stream...
I am trying to use NAudio for the resampling of pcm data.For that i use a custom stream class as input to a "RawSourceWaveStream" and feed that to a "WaveFormatConversionStream".NAudio tries to read...
View ArticleNew Post: 'Mic' plug versus 'Line In' plug
I cannot record by my 'Line-In' plug? I use Win 7 and this setup for my record-button: private void button2_Click(object sender, EventArgs e) { if (SourceList.SelectedItems.Count == 0) return; int...
View ArticleNew Post: Line out/headphone playback problem
Using WaveOutEvent, i can play a song just fine through Line Out on a laptop (headphones) My first problem came when unpluging while playing. The playback stopped and program froze. After some forum...
View ArticleSource code checked in, #27308ea3a1f1
added a method to MidiOut to send sysex based on contribution from MeelMarcel. Not tested, use at own risk
View ArticleNew Post: 'Mic' plug versus 'Line In' plug
Well it depends how your soundcard presents its inputs to Windows. Does it appear as a separate device or not? If not, then the mixer API would be needed to select the recording source.
View ArticleCommented Unassigned: NAudio does not check the .CanSeek Property of Stream...
I am trying to use NAudio for the resampling of pcm data.For that i use a custom stream class as input to a "RawSourceWaveStream" and feed that to a "WaveFormatConversionStream".NAudio tries to read...
View ArticleNew Post: Playing from MemoryStream
Hi Mark, sorry for the late response, have a LOT of todo items :( I discovered my problem and want to share this with you and other guys (who knows, maybe others will have the same): In my function...
View ArticleNew Post: Line out/headphone playback problem
I think there is a WIndows audio API that lets you know when the default playback device has changed (somewhere in the WASAPI API), but I haven't used it myself so I don't know it off the top of my...
View ArticleNew Post: Coding Encoding in memory (NAudio 1.7 alpha)
I was stuck with problem that I wanted to use coding and encoding in memory. I resolved the issue with MediaFoundationReader, which read the file from physical path and doesn't support this operation...
View ArticleNew Post: 'Mic' plug versus 'Line In' plug
Ok - both my stationary and laptop have integrated soundcards, so I need to go in the direction of the 'mixer API' I guess - where should I read up upon it? Which one of these googled links would help...
View ArticleNew Post: 'Mic' plug versus 'Line In' plug
the last one might be a good starting point, although NAudio already has a fairly comprehensive interop of the Mixer API, so you can use the code in NAudio
View ArticleNew Post: 'Mic' plug versus 'Line In' plug
ok - but I can't seem to find the right entry-point towards the documentation of that particular corner of Naudio. In case https://naudio.codeplex.com/documentation should lead me the way, which upper...
View ArticleCreated Unassigned: Make SampleProviderConverters public [16404]
SampleProviderConverters seems like useful class, but declared as internal (by default):```static class SampleProviderConverters```It is possible make it "public" in future release?
View ArticleCommented Unassigned: Make SampleProviderConverters public [16404]
SampleProviderConverters seems like useful class, but declared as internal (by default):```static class SampleProviderConverters```It is possible make it "public" in future release?Comments: I didn't...
View Article