New Post: "vshost32.exe has stopped working" MOTU+Naudio
I would suggest that you try opening the ASIO driver in stereo.
View ArticleNew Post: Audio time resolution.
When playing a wave file NAudio gets the time (current position)Â from the file reader which is cool but has one drawback. For smooth playback it is better to have large buffers but that reduces the...
View ArticleNew Post: truespeech decompress with naudio
you are marking your rawsourcewavestream as being mulaw, but if it is truespeech, then you will need to pass in the correct WaveFormat. Use the TrueSpeechWaveFormat class instead.
View ArticleNew Post: Audio time resolution.
It's a good question and NAudio does not have a standardised solution for this yet. The WaveOut class has GetPosition, which will return the waveOutGetPosition (in bytes), which should allow you to...
View ArticleNew Post: truespeech decompress with naudio
did you mean i should replace WaveFormat.CreateMuLawFormat(8000, 1));    with  TrueSpeechWaveFormat.CreateCustomFormat(8000, 1));  ?
View ArticleNew Post: truespeech decompress with naudio
yes, well actually it would be more like new TrueSpeechWaveFormat(...)
View ArticleNew Post: Audio time resolution.
Thanks again Mark this project is so cool. I got it to work perfectly but there are a few things to consider While waveout.position returns the total number of bytes it has passed to the sound card you...
View ArticleNew Post: truespeech decompress with naudio
markheath wrote: yes, well actually it would be more like new TrueSpeechWaveFormat(...) TrueSpeechWaveFormat(..) nothing in there to specify :| Â cud you be more specific pls?
View ArticleNew Post: Broadcast Wave Files
gamesound2000 wrote: Ok, I will post a couple of files in the next day or so.  Ok here is a file that causes the problem: http://dl.dropbox.com/u/38388142/How%20to%20use%20the%20Public%20folder.rtf  Â
View ArticleNew Post: Broadcast Wave Files
oops wrong file, http://dl.dropbox.com/u/38388142/FIRE%20WhooshFlameLarge%20SBPF1_482.wav
View ArticleSource code checked in, #8f9b944bfe97
better output of chunk data for WaveFileInspector
View ArticleSource code checked in, #a9095644169e
refactored the chunk parsing for WAV files out into WaveFileChunkReader, to support future pluggable RIFF chunk interpreters. Also, experimental, untested RF64 file support added
View ArticleNew Post: Broadcast Wave Files
actually, I correct myself, it is a BWF file, just not an RF64 one. I've checked in some refactoring of the code which now won't do the debug assert on your file. It also has some experimental RF64...
View ArticleEdited Issue: Download doesn't work on x64 [16335]
Same problem with SLN, but fixable by setting x86 for compile type. It appears that the dll is compiled x86 but demos are Any, which causes assembly load failure. All output types should be set to x86...
View ArticleCommented Issue: Download doesn't work on x64 [16335]
Same problem with SLN, but fixable by setting x86 for compile type. It appears that the dll is compiled x86 but demos are Any, which causes assembly load failure. All output types should be set to x86...
View ArticleClosed Issue: Download doesn't work on x64 [16335]
Same problem with SLN, but fixable by setting x86 for compile type. It appears that the dll is compiled x86 but demos are Any, which causes assembly load failure. All output types should be set to x86...
View ArticleCommented Issue: Does NAudio can play multiple music to multiple channels of...
I want to write a program to play music, exactly is play multiple music to multiple channels of sound card simultaneously.Example in my PC have an internal sound card, and have an external M-audio fast...
View ArticleNew Post: Four channel audio INPUT
I am trying to capture four channels of audio from an Alesis io4 four channel sound card. I am desperately trying to find some examples of how to do this but all I can find are examples of...
View ArticleNew Post: Four channel audio INPUT
I'm not sure you'll be able to do this with NAudio until we implement ASIO recording I'm afraid. Have you tried WaveIn with 4 channels?
View Article