New Post: Convert Mpeg1 layer 2 to wave
The Mp3FileReader converts MP3 to WAV. just call its Read method.
View ArticleNew Post: 10 band Equalizer
Hi, the BiQuadFilter isn't really part of the official NAUdio API. I'd like to rework it at some point and make it a bit easier to use. You are right - q controls the peak width, but I don't know what...
View ArticleNew Post: Need help reviewing code for a stream player. Can't get a few...
BufferedWaveProvider is what I would use - it is backed by a circular buffer, so you won't leak memory
View ArticleNew Post: Insert silence to beginning of audio file and save as new file
that's right, although be very careful that your silenceArray is always a multiple of the BlockAlign of the target WaveFormat.
View ArticleNew Post: Need help for playing a wave file from URL
Hi, I would like to use NAudio to play a wave file from an URL. Every time I use HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(url); HttpWebResponse resp =...
View ArticleNew Post: Need help for playing a wave file from URL
For streaming audio you really need to use a BufferedWaveProvider and write audio data into that as it arrives. WaveFileReader is unlikely to work because it expects to be able to reposition within the...
View ArticleNew Post: Problem with FFT calculation
Hey, A while ago I've posted on your blog (Sound Code), but I'm having a rather similar issue after having read one of your FFT articles. Basically, what I need to do is calculate the frequency of the...
View ArticleNew Post: Record a "conversation"
Is it possible to record the input and output at the same time as one stream? I am using Sipek to make calls I would like to record. I haven't been succesful in recording 2 input devices in 1 stream. I...
View ArticleNew Post: Event for unplugged Microphone
Hello, I am a newbie programmer. I wonder if anyone could give me some pointers on how to create an event for when microphone is unplugged, open msg "Your mic is unplugged". Is there an event from...
View ArticleCreated Unassigned: Problem with WavOut.Eventhandler [16393]
HiI have been trying to use the, playbackstopped eventhandler on the wavout class. I am trying to get a playlist to cycle through audio tracks so at the end of each track it evaluates the playlist and...
View ArticleCreated Unassigned: read mp3 to URL [16394]
Can Naudio read this mp3 url?http://players.creacast.com/creacast/sudtirol1a/playlist.plsRegardsAlex
View ArticleNew Post: Streaming Stereo Mix by NAudio trough wifi to Android mobile app
I am trying to capture audio from Stereo Mix input device in windows by NAudio .Net library, then send it over my wifi to my android phone, where I play it. The problem is following: The sound coming...
View ArticleCommented Unassigned: Problem with WavOut.Eventhandler [16393]
HiI have been trying to use the, playbackstopped eventhandler on the wavout class. I am trying to get a playlist to cycle through audio tracks so at the end of each track it evaluates the playlist and...
View ArticleNew Post: Event for unplugged Microphone
This is not something you can reliably detect. If it was a USB microphone, then the device itself would be removed, but many soundcards will not surface any notification to Windows that something has...
View ArticleNew Post: Streaming Stereo Mix by NAudio trough wifi to Android mobile app
You'd need buffering at the receiving end to make up for latency in the network. It would also be usual to compress the audio somehow as PCM is a very inefficient way to transmit audio. Also, you...
View ArticleCommented Unassigned: read mp3 to URL [16394]
Can Naudio read this mp3 url?http://players.creacast.com/creacast/sudtirol1a/playlist.plsRegardsAlexComments: NAudio does not read PLS files. They are only text files, so you would have to see what is...
View ArticleNew Post: Record a "conversation"
I don't think you can do this as one step. My approach has been to mix together the two recorded streams into one file.
View ArticleNew Post: Convert Mpeg1 layer 2 to wave
Sorry but one question, is this method compatible to windows store app yet?
View ArticleNew Post: Convert Mpeg1 layer 2 to wave
For windows store apps, the MediaFoundationReader will be the preferred option in the future. This will be able to coinvert MP3 to WAV
View ArticleCommented Unassigned: read mp3 to URL [16394]
Can Naudio read this mp3 url?http://players.creacast.com/creacast/sudtirol1a/playlist.plsRegardsAlexComments: Perfect !!! I have create a routine for extract url and it work fine. Regards Alex
View Article