About 51 results
Open links in new tab
  1. How to play a MP3 file using NAudio - Stack Overflow

    For users of NAudio 1.6 and above, please do not use the code in the original accepted answer. You don't need to add a WaveFormatConversionStream, or a BlockAlignReductionStream, and you …

  2. c# - How to Add NAudio to my Project? - Stack Overflow

    Jun 1, 2018 · So then I went back to the website and looked around, and I've searched and searched on the internet for things relating to "how to add NAudio to your project" or "How to link NAudio", and …

  3. c# - NAudio - Read and write a Wav file - Stack Overflow

    Dec 27, 2021 · Before applying any sound modification (using the sample frames), I'm trying to simply read a Wav file, and write out an identical one using the contents: using (WaveFileReader reader = new

  4. c# - How to use Naudio in Unity - Stack Overflow

    Oct 26, 2022 · I'm trying to use some functions of NAudio in my Unity project but don't know how to install NAudio in Unity. What I tried: · use NugetforUnity, installed Naudio, Naudio.core · download …

  5. c# - Enumerate Recording Devices in NAudio - Stack Overflow

    Sep 19, 2009 · Enumerate Recording Devices in NAudio Asked 16 years, 4 months ago Modified 5 years, 7 months ago Viewed 27k times

  6. naudio record sound from microphone then save - Stack Overflow

    Oct 1, 2015 · I'm having some issues with naudio and saving sound recordings. The code I currently have works to the point where it saves the wav file, but when I open it up, Windows Media Player …

  7. .net - Play audio from a stream using C# - Stack Overflow

    Jan 24, 2017 · Solution with NAudio With the help of NAudio 1.3 it is possible to: Load an MP3 file from a URL into a MemoryStream Convert MP3 data into wave data after it was completely loaded …

  8. Naudio: How to play MP3 and WAV file? - Stack Overflow

    Naudio: How to play MP3 and WAV file? Asked 14 years, 1 month ago Modified 4 years, 3 months ago Viewed 18k times

  9. Recording with NAudio using C# - Stack Overflow

    Mar 24, 2016 · I am trying to record audio in C# using NAudio. After looking at the NAudio Chat Demo, I used some code from there to record. Here is the code: using System; using NAudio.Wave; public …

  10. Change default audio output device with NAudio - Stack Overflow

    May 5, 2021 · I want to change windows 10 default audio output with NAudio. NAudio has an api to get the default audio endpoint: var enumerator = new MMDeviceEnumerator(); var audioOutputDevice = …