bala_kathir Posted July 14, 2007 Posted July 14, 2007 Hi guys i want to built my own equalizer(sound control) using vb.net.so can anyone give me the codings to develop it.Thanks in advance.. Bala Quote
MrPaul Posted July 15, 2007 Posted July 15, 2007 DSP in VB.Net Such low-level sound control is unlikely to be supported by the .Net framework, so you will probably need to look into using the Win32 API - specifically various multimedia functions. However, manipulating the amplitudes of different frequency bands may still not be supported, meaning you'll have to write the DSP routines yourself - a very daunting task if you're not well grounded in DSP. I have written quite a few DSP applications myself, and I would recommend using C++ to write your underlying DSP routines and use VB.Net only for the GUI. Good luck :) Quote Never trouble another for what you can do for yourself.
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.