naudio Questions
1
Solved
I have a working implementation of NAudio's wasapi loopback recording and the FFT of the data.
Most of the data I get is just as it should be but every once in a while (10 sec to minutes intervals)...
2
Solved
I am working on a project which capture speaker audio and write it to a MP3 File using naudio and naudio.lame . I add both DLL to my project from nugget enter link description here and its working ...
2
Solved
I am able to capture system audio which is generated by speaker with the help of WasapiLoopbackCapture (naudio). but the problem is it capture wav file and size of wav file very large (almost 10 to...
3
Solved
I want to change a WAV file to 8KHz and 8bit using NAudio.
WaveFormat format1 = new WaveFormat(8000, 8, 1);
byte[] waveByte = HelperClass.ReadFully(File.OpenRead(wavFile));
Wave
using (WaveFil...
1
Solved
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 returns an erro...
1
I want to work on audio processing. Can I use naudio library while working on Ubuntu.
2
Solved
I need to find a way to get the length of a WMA file without using any of the Windows Media Player(WMP) dlls. I found way to do it using WMP dlls, which you can see here, but due to another issue, ...
1
Solved
I've added FftPitchDetector.cs into my project, but I'm not sure how to use it.
My code:
private void sourceStream_DataAvailable(object sender, NAudio.Wave.WaveInEventArgs e)
{
if (waveWriter ...
Vallo asked 21/2, 2013 at 17:55
1
Solved
I am very new to NAudio and am trying to write a small program that records some audio from a microphone and writes it to a Wave file. When I call the recordStuff() function in the Main function of...
Malawi asked 14/1, 2013 at 4:0
2
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
Solved
2
Solved
I have audio samples extracted through NAudio, i know parameters:
channels
bytes per sample,
samplerate
How to play that samples by using .Net api / or other .Net library
Here code:
openFi...
1
Solved
So I'm attempting to use MonoDevelop with NAudio and Ubuntu Linux, For some reason It errors saying that winmm.dll isn't found so I attempted to download it and and the "Add Reference" dialogue cla...
Zoosperm asked 10/12, 2012 at 0:42
1
Solved
I'm using NAudio with
WaveOutEvent Klangwiedergabegeraet;
private void Play(string Dateiname)
{
Klangwiedergabegeraet = new WaveOutEvent();
Klangwiedergabegeraet.DeviceNumber = comboBox1.Select...
1
Solved
I've been struggling with this for quite some time now and I couldn't find a working solution.
I have a wav file (16 bit PCM: 44kHz 2 channels) and I want to extract samples into two arrays for ea...
1
class Sound
{
private NAudio.Wave.BlockAlignReductionStream stream = null;
private NAudio.Wave.DirectSoundOut output = null;
private string fileName;
public Sound(string fileName)
{
this.f...
1
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...
Herringbone asked 20/11, 2011 at 7:6
1
Solved
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[]...
2
I want to be able to get input from a microphone device via NAudio.WaveIn, and then output that exact input to an output device via NAudio.WaveOut.
How would I do this?
2
Now I am trying to use NAudio to play .wav and .mp3 files in my application for Windows Operating system.
Will this NAudio support Mac OS X?
1
I am using the NAudio DLL and I am looking for example code for pitch shifting sound.
Aerostation asked 30/4, 2011 at 17:21
2
Solved
I am using NAudio to play a sinewave of a given frequency as in the blog post Playback of Sine Wave in NAudio. I just want the sound to play() for x milliseconds and then stop.
I tried a thread.sl...
Elwoodelwyn asked 30/3, 2011 at 11:17
2
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: ...
Adorl asked 3/4, 2011 at 1:33
1
Solved
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 System.Collecti...
4
Solved
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 ...
© 2022 - 2024 — McMap. All rights reserved.