Created Issue: Can't close app in Unity3D [16372]
When using in Unity3d, I can not close app.In Unity3D editor, it does work.
View ArticleNew Post: Converting WAVs to AIFFs
I'm trying to convert from .wav to .aiff and notice there is an example of how to convert a .aiff to .wav using the AiffFileReader but there doesn't appear to be an AiffFileWriter which I'd hoped there...
View ArticleCommented Issue: Can't close app in Unity3D [16372]
When using in Unity3d, I can not close app.In Unity3D editor, it does work.Comments: What exactly are you doing with Unity3d? It's an application I have never used, so I can't tell what the problem is...
View ArticleCommented Issue: Can't close app in Unity3D [16372]
When using in Unity3d, I can not close app.In Unity3D editor, it does work.Comments: Unity3d is tool for game develop. I have simply used naudio to play mp3 in it.
View ArticleEdited Issue: Can't close app in Unity3D [16372]
When using in Unity3d, I can not close app.In Unity3D editor, it does work.Test sample can be downloaded from below.https://skydrive.live.com/redir?resid=A75A74307455C939!117&authkey=!ALwBE-R92Qc6x6k
View ArticleNew Post: .DAT File from DDP Fileset
I've tried to figure this out. Does this look correct?PrivateSub btnPlay_Click(sender AsObject, e As EventArgs) Handles btnPlay.ClickIf Label1.Text = NothingThenDim wavFile AsString...
View ArticleNew Post: .DAT File from DDP Fileset
yes this is fine, although the WaveChannel32 is redundant in this case. Also, only use ASIO if you have a particular need for very low latency.
View ArticleNew Post: Converting WAVs to AIFFs
Unfortunately there is no AiffFileWriter in NAudio. If someone were to contribute a working one to the project I would be glad to include it. You may be able to work out how to create one yourself by...
View ArticleNew Post: Converting WAVs to AIFFs
Thanks for the prompt response Mark, I'll take a look at that
View ArticleNew Post: NAudio Performance
Hey,Thanks for your awesome work. It's been rather enjoyable using your library for development. I have a question about performance, however. My intention is to create a Digital Audio Workstation with...
View ArticleCommented Issue: Can't close app in Unity3D [16372]
When using in Unity3d, I can not close app.In Unity3D editor, it does work.Test sample can be downloaded from...
View ArticleCommented Issue: Can't close app in Unity3D [16372]
When using in Unity3d, I can not close app.In Unity3D editor, it does work.Test sample can be downloaded from...
View ArticleEdited Issue: Can't close app in Unity3D [16372]
When using in Unity3d, I can not close app.In Unity3D editor, it does work.Test sample can be downloaded from below.https://skydrive.live.com/redir?resid=A75A74307455C939!117&authkey=!ALwBE-R92Qc6x6k
View ArticleClosed Issue: Can't close app in Unity3D [16372]
When using in Unity3d, I can not close app.In Unity3D editor, it does work.Test sample can be downloaded from...
View ArticleNew Post: Synthesis of a basic wave , and change the frequency
Hello everyone ,I'm a beginner with NAudio and I want to create a basic sinus wave and modify its frequency with the move of the mouse . I followed this tutorial .And in my MainWindow , I've just...
View ArticleNew Post: Synthesis of a basic wave , and change the frequency
for smooth frequency changes you need to implement a portamento algorithm. One way to do this is with a wavetable, where you slowly change the offset intot the wavetable you are operating with. It's a...
View ArticleNew Post: NAudio Performance
.Net is plenty fast enough to do a project like that, *IF* you correctly optimize the code (using the profilers as guides).That said, I would recommend only opening a single output stream; This uses...
View ArticleNew Post: G.727 Support
Thank you very much. Your statements were very helpful. I had some problems calling the ADPCM.dll properly. But now it seems to work mostly.Unfortunately only mostly, because the library proccesses the...
View ArticleNew Post: G.727 Support
WaveFormatConversionStream should use the BlockAlign parameter of the source stream to manage its read sizes. Make sure that is set to the correct block size.Mark
View Article