New Post: "vshost32.exe has stopped working" MOTU+Naudio
Hi all! Im pretty fresh at this, but I cant get DSebJs tutorial to work (http://opensebj.blogspot.com/2009/02/introduction-to-using-naudio.html) in other then ASIO4ALL and with 16-bit wave-files. If I...
View ArticleNew Post: "vshost32.exe has stopped working" MOTU+Naudio
What version of NAudio are you using? The ASIO support in NAudio is working much better than it used to, but it wouldn't surprise me if there are still some interfaces it has problems with. ASIO has...
View ArticleNew Post: "vshost32.exe has stopped working" MOTU+Naudio
Yes, I think I need to use ASIO since I must be able to set a fixed latency. The software im developing has to timestamp exactly when the sound occurs and stops, and I dont I can rely on WaveOut or...
View ArticleNew Post: "vshost32.exe has stopped working" MOTU+Naudio
what WaveFormat are you giving to AsioOut? The demo/apps have a direct mode that will send 16/24 bit as-is to the ASIO out, but you can also go to IEEE float and give that directly to it. If you can...
View ArticleNew Post: "vshost32.exe has stopped working" MOTU+Naudio
Im using the NAudio.dll, I have not built the NAudio source code myself, get too many errors I dont understand. If the question is what wave-file-format im using it's Wave(Microsoft), Uncompressed PCM,...
View ArticleNew Post: MIDI IN letters notes, insetad numbers?..... a big problem
Mark i cnat udnerstadn how do, i follow teh example, yes. and do this: void midiIn_MessageReceived(object sender, MidiInMessageEventArgs e) {MessageBox.Show(Convert.ToString(e.MidiEvent)); }Can showme...
View ArticleNew Post: What is ASIO ?
I have understand that asio is a driver, but why i must install asio driver ? Asio driver is default driver for NAudio ? Can i use other driver audio ? can i select ?
View ArticleNew Post: MIDI IN letters notes, insetad numbers?..... a big problem
Do something like this: string message = e.MidiEvent.ToString(); if (e.MidiEvent is NoteEvent) { NoteEvent n = (NoteEvent)e.MidiEvent; message = String.Format("{0} {1} Ch: {2} Note:{3} Vel:{4}",...
View ArticleNew Post: What is ASIO ?
you don't need to use ASIO at all. I suggest using WaveOut or DirectSound out.
View ArticleNew Post: Record internet audio stream
I must record a internet audio stream with these feautures : Speed : 65 KbpsCodec audio : Windows Media Audio 64 Kbps, 44 Khz, stereo How can i use Naudio ? is there example ?
View ArticleNew Post: Record internet audio stream
I'm not sure what NAudio would do for you here. I would just download the audio from the network and save it into a .wma file.
View ArticleNew Post: MIDI IN letters notes, insetad numbers?..... a big problem
Thank you so much, for help..........and specially for your patience!
View ArticleNew Post: Resample wav files
Hi, Does NAudio support resample (downsample) of wav files? I mean, for example I have wave file sampled at 32 000 Hz, a I want convert it to 16,8, or 4 kHz. It's not only a simple conversion by...
View ArticleNew Post: Resample wav files
Another question that I have: I found a low pass filter at BiQuadFilter in NAudio.Dsp. How to use that low pass filter to recorded wave file? Any example to filter samples?
View ArticleNew Post: truespeech decompress with naudio
ive got truespeech data which i need to play with naudio. 96 bytes of data is to be played on an interval of 85 ms. how do i accomplish this? MemoryStream ms = new...
View ArticleNew Post: Resample wav files
NAudio can resample using ACM, or with the DMOResamplerStream (if the DMO resampler COM object is on your box). I don't think either of them do filtering though so there is possibility of aliasing when...
View ArticleNew Post: NAudio crashes on startup.
I'm not using ISS, I'm using a regular DLL build of the library. I'm not using any particular class. The exception happens as soon as any function with NAudio objects is reached. Here's all the info:...
View ArticleNew Post: NAudio crashes on startup.
Are you able to make a very simple application that has this problem and upload a copy for me to have a look at? thanks Mark
View ArticleNew Post: Multiple NAudio Instances
Hi all, I am developing a WPF application with the sound visualization of two audio files at the same time. I am not able to have two instances of NAudio. Please help me to have two instances of the...
View Article