New Post: Timer in NAudio
zsb wrote: If I understand what you are trying to do, then something like this should work. Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick...
View ArticleCommented Issue: MP3 Stream is not playing [16186]
The default URL for MP3 stream is not working. https://radio.reaper.fm/stream/ is generation unable to connect remote server. Is there any other free URL to test?Comments: try this one :...
View ArticleNew Post: Timer in NAudio
djtechwork wrote:Sorry, I new in vb.net. I've added 'InitializeComponent()' since the code gives me warning "should call InitializeComponent method." But I still can't get it worked well. In the...
View ArticleNew Post: Timer in NAudio
zsb wrote: djtechwork wrote: Sorry, I new in vb.net. I've added 'InitializeComponent()' since the code gives me warning "should call InitializeComponent method." But I still can't get it worked well....
View ArticleNew Post: Controlling multiple waveOut instances
Hello! I've created a program that uses a 8 channel external audio card to play audio through waveOut. I was wondering how would it be possible to create several instances of audio. I would prefer if...
View ArticleNew Post: Controlling multiple waveOut instances
it looks like your class just has one instance of waveOutDevice, volumeStream and mainOutputStream. However, there needs to be one per device. A simple way to do this would be to create a usercontrol...
View ArticleNew Post: Controlling multiple waveOut instances
Thanks! I am quite new to .NET programming and didn't even think about usercontrols. I am making progress now, however could you give me a hint on what would be the easiest way to control all of the...
View ArticleNew Post: Controlling multiple waveOut instances
well your usercontrol would have public methods, like Play() Stop() etc. Then the host form would have a list of your user controls, and loop through it calling the appropriate method on each one in turn.
View ArticleNew Post: Controlling multiple waveOut instances
Thank you a lot for the help! All the best for you and your project! You're doing awesome job.
View ArticleNew Post: Simple waveform visualizing
I have been browsing through this forum and the demo NAudio project for several hours now but I'm still unable to understand how to simply draw a waveform. The example provided is in C#, which is a...
View ArticleNew Post: Plays in speakers, but not in headphones
Thanks for the reply. I have done as you suggested, but the effect is the same. I've tried setting it to 0, 1, & -1 but I get nothing through headphones or speakers. It was done immediately after I...
View ArticleNew Post: Plays in speakers, but not in headphones
are they USB headphones, in which case Windows could be treating it as a new audio device
View ArticleNew Post: Plays in speakers, but not in headphones
I have actually tested with both USB and regular and have the same result.
View ArticleNew Post: Plays in speakers, but not in headphones
what OS are you using? Win 7 is supposed to do clever stuff under the scenes so this type of thing ought to just work.
View ArticleNew Post: Plays in speakers, but not in headphones
Yeah, it's really confusing me..I hope I'm not missing something really simple here. I am using 7 (Ultimate). I just don't understand why it would work in the speakers only AFTER I unplug the...
View ArticleNew Post: Plays in speakers, but not in headphones
does it do the right thing when say Windows Media Player or a web page are playing sound and you change the device? Also, have you tried with DirectSoundOut and see if that works?
View ArticleNew Post: Plays in speakers, but not in headphones
Yeah it works correctly with WMP. I haven't tried DirectSoundOut, I'll give that a shot.
View ArticleNew Post: Plays in speakers, but not in headphones
Yeah the DirectSoundOut works fine...weird. You mentioned in your blog that it's pretty widely supported so I'm sure this will work just fine. Alright, well thanks!
View ArticleNew Post: NAudio AudioSessionEnumerator ??
Hi, It seems that c++ has this object/capability (and in general AudioSession) but I cant see it in the naudio wrapper. Have I missed it or does it not exist. I guess I can have ago at rolling this...
View ArticleNew Post: Recording audio and save as Raw data (A-Law)
Hi, I'm working with the naudio c# example. I'm trying to record some audio from the mic, using the NAudioDemo RecordingDemo (recordingPanel.cs). The process works fine. My question is: how do I...
View Article