NAudio Midi ProgramChange Programming Software Development by CloneXpert … that somebody is familiour with the [URL="http://naudio.codeplex.com/"]NAudio library [/URL], and can tell me how to… Audio mix/fade Programming Software Development by pritaeas … and have trouble using it. So far I've found [NAudio](https://naudio.codeplex.com), which makes playing mp3's easy. I… Re: Audio mix/fade Programming Software Development by qingshan05 Hello pritaeas, I also want to fade out running audio with NAudio. I have tried but the way of NAudio's BeginFadeOut always creates 'clicks'. Could you please advise me how to fade out running audio without creating any noise? I am looking forward to hearing your advice. Qingshan Re: Audio mix/fade Programming Software Development by qingshan05 Hello pritaeas, I also want to fade out running audio with NAudio. I have tried but the way of NAudio's BeginFadeOut always creates 'clicks'. Could you please advise me how to fade out running audio without creating any noise? I am looking forward to hearing your advice. Qingshan Re: Audio mix/fade Programming Software Development by gusano79 I don't know NAudio, but it looks useful at a first glance. Do you … Re: Audio mix/fade Programming Software Development by pritaeas Thanks for those tools anyway, very good to know. We have found a way with NAudio, so sticking with that for the moment. Re: Audio mix/fade Programming Software Development by pritaeas See the answer [here](http://stackoverflow.com/questions/28475791/sound-clipping-clicking-when-lowering-volume-with-naudio). Converting wav to mp3 Programming Software Development by Romil797 Exactly that. Using NAudio or DirectX, can someone show me how to convert a wav file to mp3. Mp3 to wav seems trivial, but unfortunately i need wav to mp3. Thank you for your help Re: VB.net 2 sound cards playing different sounds. Programming Software Development by rproffitt Many turn to Naudio (https://github.com/naudio/NAudio/wiki) or similar. I have yet to see anyone code this natively. Re: VB.net 2 sound cards playing different sounds. Programming Software Development by xrjf Also, you may consider reading NAudio's document "Understanding Output Devices" [Here](https://github.com/naudio/NAudio/blob/master/Docs/OutputDeviceTypes.md) Re: Audio output Programming Software Development by kvprajapati Please post exception stack trace or code snippet and have a look at - [URL="http://naudio.codeplex.com/"]NAudio[/URL] API. Re: VB.net 2 sound cards playing different sounds. Programming Software Development by xrjf … translated into VB.NET. Imports System.ComponentModel Imports NAudio.Wave Public Class Form1 Dim devNum As Int32 Dim…Click reader.Position = 0 End Sub End Class ![NAudio.PNG](https://static.daniweb.com/attachments/3/aaa5e8ef3ea89564f355aeb5b3558200.PNG) Re: VB.net 2 sound cards playing different sounds. Programming Software Development by UKnod … of two different cards at the same time. Imports NAudio Imports NAudio.Wave Public Class Form1 Private mplayer1 As WaveOut Private mplayer2… Re: Recording sound with C# Programming Software Development by cshgurunot … myself ! Thanx :)[/QUOTE] Check out a .NET library called [U]nAudio[/U] on codeplex Re: audio.play volume controls Programming Software Development by lolafuertes The Audio class does not supports volumen manipulation. See on [this](http://naudio.codeplex.com/) link for a Nuget Audio Package. Hope this helps Re: "Unable to load MediaInfo library" Programming Software Development by Reverend Jim …(" %s:%s" % (key,info.Video[key])) print("\nAudio:") for key in info.Audio: print(" %s:%s… Re: VB.net 2 sound cards playing different sounds. Programming Software Development by xrjf Perhaps this link may help you. [Click Here](https://stackoverflow.com/questions/62150375/how-to-select-correct-sound-output-device-in-the-naudio-after-added-removed-a-s) Re: VB.net 2 sound cards playing different sounds. Programming Software Development by Schol-R-LEA … them. There may not be examples of how to use NAudio in VB.NET in the documentation, but it should be… Re: Audio mix/fade Programming Software Development by pritaeas > Do you have language/platform restrictions? C# is one. I am not the main coder. Just at the sideline looking into issues. Had a quick glance at PortAudio, but I do not see any mixing features listed in the docs (unless overlooked). This is one of the most important features at first. Something like [this](https://code.google.com/p/crossfade/… Re: Audio mix/fade Programming Software Development by Stuugie I don't know much about audio mixers and players but I have a friend that swears by [MIXXX](http://www.mixxx.org/) software. The interface can be challenge to learn, initially, but once learned it is apparently really good. My 1 penny! Re: Audio mix/fade Programming Software Development by pritaeas Came across that today too, looks good for personal use, but still too advanced to be used by anybody. Re: Audio mix/fade Programming Software Development by gusano79 > Had a quick glance at PortAudio, but I do not see any mixing features listed in the docs (unless overlooked). You didn't miss anything; that's why I called it DIY... :) Mixing is just about the easiest thing you can do in audio software, though, and a simple crossfade between two audio streams isn't much harder. I'm not aware of any library… Re: Converting wav to mp3 Programming Software Development by sandeepparekh9 check here: [URL="http://www.codeproject.com/KB/audio-video/dshowencoder.aspx"]http://www.codeproject.com/KB/audio-video/dshowencoder.aspx[/URL] [URL="http://wrb.home.xs4all.nl/Articles_2010/Article_WPFWavToMP3_01.htm"]http://wrb.home.xs4all.nl/Articles_2010/Article_WPFWavToMP3_01.htm[/URL] Re: Converting wav to mp3 Programming Software Development by CsharpChico This project works ive used it in the past and is very well worth looking into [URL="http://www.codeproject.com/KB/audio-video/MP3Compressor.aspx"]MP3Compressor By Idael Cardoso[/URL]