Tagged Questions
NAudio is an open source audio library for .NET, supporting audio playback, recording and sample manipulation as well as reading and writing various audio file formats.
40
votes
9answers
43k views
Play Audio from a Stream using C#
Is there a way in C# to play audio (e.g. MP3) direcly from a Stream (I mean the real .NET class) that for instance was returend from a WebRequest without saving the data temporarily to the disk?
...
7
votes
2answers
932 views
Precision timing in .NET
I've just seen this question, where one of the answers indicates that System.Diagnostics.Stopwatch should only be used for diagnosing performance and not in production code.
In that case, what would ...
6
votes
2answers
142 views
Detecting beats in a song
I'm working on a project which requires me to add beat detection when a song is playing in the application (WinForms - C#).
I'm currently using NAudio.NET for playing the song & displaying ...
6
votes
1answer
137 views
NAudio frequency band intensity
I have an audio player using NAudio and I would like to display a real time intensity for each frequency band.
I have an event triggered for each block of 1024 samples:
public void Update(Complex[] ...
4
votes
1answer
322 views
Recording with NAudio using c#
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 class FOO
{
...
4
votes
4answers
611 views
NAudio to split mp3 file
Hihi,
I am very new to audio or mp3 stuff, was looking for a way to have a feature to split an mp3 file in C#, asp.net. After googling for a good 3-day without much of a great help, I am hoping that ...
4
votes
1answer
332 views
Sending playing Audio using NAudio
I have managed to send audio from a microphone using the code found at
http://www.codeproject.com/KB/cs/Streaming_wave_audio.aspx
However I have not been able to do this using NAudio
...
4
votes
2answers
348 views
NAudio demos not working anymore
I just tried to run the NAudio demos and I'm getting a weird error:
System.BadImageFormatException: Could not load file or a
ssembly 'NAudio, Version=1.3.8.0, Culture=neutral, PublicKeyToken=null' or ...
3
votes
1answer
125 views
Analyzing audio to create Guitar Hero levels automatically
I'm trying to create a Guitar-Hero-like game (something like this) and I want to be able to analyze an audio file given by the user and create levels automatically, but I am not sure how to do that.
...
3
votes
1answer
252 views
NAudio Algorithm to play a sinewave whose frequency can be changed smoothly in real time
The title of this question says what I'm looking for.
So far, I have implemented the algorithm found on this blog post with limited success.
The concept of my program is to initialise the sinewave, ...
3
votes
1answer
172 views
NAudio pitch shifting
I am using the NAudio DLL and I am looking for example code for pitch shifting sound.
3
votes
2answers
853 views
How to play mp3 stream in c#
I want to play mp3 stream in my c# application. i have a server application which capture wave audio and convert it into mp3 and write on network stream.Client read this stream and have to play this ...
3
votes
2answers
657 views
Audio recording and playback using NAudio
When I try recording audio following this here, and using the related source code from here in the (voicerecorder.audio project), I face the problem that the recording stops within moments of ...
3
votes
2answers
118 views
How can i get 2 wavefilereaders to play sequencially?
I'm trying to play a set of audio wav files being sent over the network for playing as a overall sound stream. How do i get a set of these chunks to play one after the other with no sound breaks or ...
3
votes
4answers
460 views
What determines the order for sound devices in windows when using winmm.dll?
I am trying to use NAudio to create a multiple sound output application. We have 8 USB sound cards installed. NAudio lets me use all 8 but I can't figure out a pattern for determining which device ...
2
votes
1answer
56 views
NAudio.MmException
I'm experimenting on how to play mp3 using Naudio. My simple app has one windows form and one button to play/pause the music. The app however has two major problem:
While it was intended that if the ...
2
votes
0answers
37 views
iTunes integration & resizing
I am building an itunes add on. One of the specification is to make sure that the add in starts up as itunes starts and re-size itunes in a way that the two applications will be visible to the user. ...
2
votes
1answer
71 views
How to apply smoothing on speech segments concatenation using NAudio?
I'm doing speech segments concatenation to produce final speech (Test to speech task), I want apply smoothing on these segments to make the final result more natural.
What is the best smoothing ...
2
votes
0answers
365 views
How to decode RTP packets and save it has .wav file
I am trying to develop an application in which a sip call is established and then i am capturing rtp audio packets. As they are encoded so i need to decode them and save it has .wav file. Tried using ...
2
votes
1answer
183 views
Audio repeater with NAudio
I'm implementing a program that reads an audio stream from an input device and sends it to an output device using NAudio. To do that, I get the data from the input stream using WaveIn and its ...
2
votes
1answer
93 views
Create Clapper software with Naudio
I'd like to create a software that listens after claps thru microphone..
my first implementation will be to try to get the software to warn when i hears high volume sound.
but i was wondering if ...
2
votes
3answers
437 views
Detect headphones in Windows
I'm trying to detect if the headphones are plugged in on Windows. I've already tried DirectSound and the NAudio library and have not had any success. Does anyone have any suggestions?
NOTE: this ...
2
votes
2answers
230 views
Naudio NoDriver error .Net
I get the exception "NoDriver calling acmFormatSuggest" when executing this function:
private static WaveChannel32 OpenMp3Stream(string fileName)
{
WaveChannel32 inputStream;
...
2
votes
1answer
236 views
Audio Capture is not working as expected
In my Microsoft Surface application I'd like to use voice capture. So I followed the tutorial metioned here (http://opensebj.blogspot.com/2009/04/naudio-tutorial-5-recording-audio.html) and modified ...
2
votes
1answer
596 views
Playing a .wav file using naudio, playback stops after 1 sec
I'm using the naudio lib in C# and want to play a simple file. The problem is, the playback stops after 1 second. I cant figure out the reason why it does that.
using System;
using ...
2
votes
2answers
372 views
NAudio playback wont stop successfully
When using NAudio to playback an mp3 [in the console], I cant figure out how to stop the playback. When I call waveout.Stop() the code just stops running and waveout.Dispose() never gets called.
Is ...
2
votes
1answer
1k views
How to play a MP3 file using NAudio
WaveStream waveStream = new Mp3FileReader(mp3FileToPlay);
var waveOut = new WaveOut();
waveOut.Init(waveStream);
waveOut.Play();
This throws an exception:
WaveBadFormat calling waveOutOpen
...
2
votes
2answers
273 views
WaveChannel32 gives me an exception: Offset and length were out of bounds
With the NAudio library I'm trying to mix some audio using a WaveMixerStream32 so I'm using WaveChannel32 to feed it the streams in the proper format. I've got an exception with the following message:
...
1
vote
1answer
95 views
Delay (approx 200 ms) in streamed audio playback
I have an application which plays the streamed audio data (like a chat client). The workflow involves three simple steps:
The file header info (sample rate, bits per sample and num of channels) is ...
1
vote
1answer
78 views
Play Any Sound file (or at least the common audio files)
I am developing a music player in C#. For playing audio files, I have found that .NET provides many ways to play audio:
Use a Microsoft.DirectX.AudioVideoPlayback via ...
1
vote
1answer
76 views
Start recording wave using naudio when sound input reachs a certain level
I am trying to create an app that allows me to record a wav file everytime the input volume is greater than a given volume.
I have the code to record the sound off a button but i would like to ...
1
vote
2answers
74 views
Is it possible to play audio from a short[] instead of a byte[] with NAudio?
I am trying to play audio received over a network which arrives as an array of shorts. I am trying to make this work with a WaveOut object from NAudio, but from what I could find, this only works with ...
1
vote
1answer
43 views
Trimming mp3 files using NAudio
Is it possible to trim a MP3 file using NAudio? I am looking for a way to take a standard mp3 file and take a part of it and make it a seperate mp3.
1
vote
2answers
99 views
Strong signed NAudio.dll
Does somebody have the Strong signed NAudio.dll?
Because I am bulding an application that requires the NAudio to be strong signed.
Error Assembly 'NAudio.dll' must be strong signed in order to be ...
1
vote
1answer
40 views
How to handle MMException from NAudio after Mic is unplugged during recording
I am working on an windows forms program which listens to all of the active audio input devices using NAudio. The problem I am running into is if an there is only one audio input device is plugged in ...
1
vote
1answer
182 views
NAudio recording from headset
I have been using the code in http://opensebj.blogspot.com/2009/04/naudio-tutorial-5-recording-audio.html to record audio. Basically this code:
WaveIn waveInStream;
WaveFileWriter writer;
...
1
vote
1answer
132 views
NAudio - How to send sine wave only to one audio channel on jack
I took an existing mono (non-stereo) NAudio example for Visual Studio 2010 from:
http://mark-dot-net.blogspot.com/2009/10/playback-of-sine-wave-in-naudio.html
and changed it to have two channel ...
1
vote
1answer
17 views
When listening for messages from a device, what is the unit of AbosoluteTime?
When listening for MidiEvents in NAudio from a MidiDevice, we get the long "AbsoluteTime" property on each event. But what unit is this time in and from what starting point is it measured?
1
vote
1answer
77 views
MP3 Playing with NAudio - Problems with Stop()
I've just started using NAudio (1.4) solely for MP3 playback. I've been working off the documentation and the source code for the samples. Currently I have this in a class:
IWavePlayer ...
1
vote
1answer
98 views
How to use NAudio to join 3 wav files into single file with 3 channels in C#?
Using C# and NAudio, I have have three wave files I would like to join into a single wave file having three channels, each corresponding to one of the three input files. Furthermore, I would like the ...
1
vote
1answer
195 views
Changing wave format at runtime with NAudio
I have initialized the device using:
static IWavePlayer waveOut;
static WaveFormat waveFormat;
static BufferedWaveProvider waveProvider;
private static int AudioDeviceInit()
{
...
1
vote
1answer
231 views
Playing streamed audio data (C#)
I an trying to develop a windows application using C# that can play streamed audio data. Basically, I will have a client application that is responsible for playing different audio files. Currently, ...
1
vote
1answer
107 views
Simple NAudio Play
How do I make NAudio play the embedded resource 'WaterforMGC.delfino.wav?' I don't want a whole .cs file though, just something simple that I can learn from.
1
vote
1answer
123 views
Lossless reading from mic
I'm using NAudio (but it applies to reading directly) to capture microphone wave data. It seems that if my app is busy it drops/skips some input data from the mic.
I've set the reading thread to top ...
1
vote
1answer
320 views
change wav file ( to 16KHz and 8bit ) with using NAudio
I want to change a wav file to 8KHz and 8bit with using NAudio.
WaveFormat format1 = new WaveFormat(8000, 8, 1);
byte[] waveByte = ...
1
vote
1answer
222 views
WaveMixerStream32 and IWaveProvider
Is there any way with NAudio to link a WaveMixerStream32 with WaveProviders, rather than WaveStreams? I am streaming multiple network streams, using a BufferedWaveProvider. There doesn't seem to be an ...
1
vote
1answer
256 views
Playing a Midi file with time offset in C#
I'm currently trying to walk through a midi file as a song plays, with the midi file "playing" a few milliseconds ahead of the song. In greater detail, I'm visualizing the notes of the song by sliding ...
1
vote
1answer
296 views
Streaming non-PCM raw audio using NAudio
I'm hell bent on making this work with NAudio, so please tell me if there's a way around this. I have streaming raw audio coming in from a serial device, which I'm trying to play through WaveOut.
...
1
vote
1answer
99 views
Getting an error when exiting program after loading .wav using NAudio
I just found NAudio the other day and I've been playing with it. I have written a simple windows form program that has a load button (loads a specific .wav song), and buttons to play, pause, stop, ...
1
vote
3answers
257 views
When playing 3 MP3 sound files in synchronously I receive a strange exception
I would like to do this:
Sistema.Util.MP3Player(@"sound1.mp3");
Sistema.Util.MP3Player(@"sound2.mp3");
namespace Sistema.Util.TextToSpeech
{
public class Player
{
static ...