New Post: Setting waveViewer1 to a array of float values
I do a FFT to my input signal but now I am to display it with waveViewer1 but I think I have to make a WaveFormat out of the array 1st? is this so? how would I do this?
View ArticleNew Post: display the FFT results of FFT
Dear Sir, Sorry for my bad question , but Kindly , I need your support to provide sample code to read Mp3 file >> get FFT results. I need to get the amplitude at a certain frequency , , eg get...
View ArticleNew Post: Setting waveViewer1 to a array of float values
Dear Sir, I need to get FFT of my mp3 file. I need to get the amplitude at a ceratain frequency. Can you please supply me with your code about how to implement FFT. Thanks for support.
View ArticleCreated Unassigned: Time Signature Problems [16417]
Hi.I'm creating MIDI files in my program and the time signature is just completely wrong. I do this:Tracks.AddEvent(new TimeSignatureEvent((long)AbsoluteTime, TimeSigNum, TimeSigDen, 24, 8), 0);where...
View ArticleEdited Unassigned: Time Signature Problems [16417]
Hi.I'm creating MIDI files in my program and the time signature is just completely wrong. I do this:Tracks.AddEvent(new TimeSignatureEvent((long)AbsoluteTime, TimeSigNum, TimeSigDen, 24, 8), 0);where...
View ArticleEdited Unassigned: Time Signature Problems [16417]
Hi.I'm creating MIDI files in my program and the time signature is just completely wrong. I do this:Tracks.AddEvent(new TimeSignatureEvent((long)AbsoluteTime, TimeSigNum, TimeSigDen, 24, 8), 0);where...
View ArticleEdited Unassigned: Time Signature Problems [16417]
Hi.I'm creating MIDI files in my program and the time signature is just completely wrong. I do this:Tracks.AddEvent(new TimeSignatureEvent((long)AbsoluteTime, TimeSigNum, TimeSigDen, 24, 8), 0);where...
View ArticleNew Post: Playing MP3 data to serial port based on GSM format
Dear Sir, Kindly , I need to play an mp3 sound to serial port (GSM) , since I am sending it to GSM, it should be ( signed 16bit PCM 8000 Hz file.). I have MP3 file that i need to play using this format...
View ArticleNew Post: Setting waveViewer1 to a array of float values
do you know display raw float data in to a waveViewer1?
View ArticleNew Post: Setting waveViewer1 to a array of float values
waveViewer displays waveforms, not FFTs. It's a very simple control, and will probably be removed from NAudio. For visualizations of FFTs, have a look at the demo in the WPF Demo source code. Also, if...
View ArticleNew Post: how to play .opus file using Naudio.
Hi Mark , I want to play .opus file using Naudio.How to possible is this? If possible then provide the class.
View ArticleNew Post: how to play .opus file using Naudio.
No direct support but have a look at this project: https://github.com/JohnACarruthers/Opus.NET
View ArticleNew Post: how to play .opus file using Naudio.
how to implement "https://github.com/JohnACarruthers/Opus.NET" this project to naudio.
View ArticleNew Post: display the FFT results of FFT
There are lots of examples of NAudio and FFT. You'd use AudioFileReader to easily get the samples as floating point, then pass them through the FFT class. You really will need to learn a few things...
View ArticleCommented Unassigned: Microphone Data to FFT [16415]
I have a working FFT, I need to know how to get RAW data from my microphone in real time.this is the code I have so far:```private NAudio.Wave.WaveIn sourceStream = null; private...
View ArticleNew Post: Mixing 2 audio inputs
You could possibly achieve this with NAudio, using WasapiLoopbackCapture to get the audio being played by your speakers, and then WaveIn or WasapiCapture to record the microphone. You'd then mix the...
View ArticleNew Post: NAudio MIDI editing questions
thanks for the information. I'm not actively working on the MIDI code at the moment, but I've bookmarked this discussion for next time I am.
View ArticleNew Post: Difference between WASAPI Loopback Capture and WaveIn recording
I was reading about your library and I would like to know the differences between recording using those two classes? Is there any benefits using one of them?
View ArticleNew Post: 17640 buffer size
right now I am getting 17640 samples from this code void waveIn_DataAvailable(object sender, WaveInEventArgs e) { byte[] buffer = e.Buffer; int bytesRecorded = e.BytesRecorded; buffer1 = new...
View ArticleNew Post: Setting waveViewer1 to a array of float values
Dear btb4198 , I need to make FFT for my mp3 file. Can you please write down the code you made for FFT . FFT is a very complex issue for me. Thanks for support.
View Article