How to make an audio processing device for noise reduction ?

Click For Summary
The discussion focuses on creating an audio processing device for noise reduction using Arduino, with initial attempts proving that real-time processing is not feasible. Participants suggest exploring alternative boards like ARM microcontrollers or Beagle Bone for better performance in audio processing. The conversation emphasizes the importance of separating hardware and software components, with recommendations for using digital signal processing (DSP) software on various platforms, including PCs. There is also mention of historical DSP platforms like TI's TMS320 as viable options for development. Overall, the thread highlights the challenges and potential solutions for building an effective noise reduction system.
hugo_faurand
Messages
62
Reaction score
10
Hello everyone !I am working on noise reduction and I wanted to do some experiments with an arduino. I took an arduino which get music (as an example) in input by jack. It also has a microphone and in a first try the goal is to get as an output the music - the noise around... To act like a kind of noise reducing system. Then I will do a better signal treatment. The goal is to use the system as an audio treatment unit.Here's a simple sketch and the system to amplify the audio signal.

arduino signal process.png

Some of you must be laughing. In fact I realized that an arduino can not do that in real time. So I wonder is it possible to do that maybe with a board similar to an arduino board ? I think it's also difficult with a Raspberry Pi, not because of the specs of Raspberry's CPU but it is much less handy to work on electrical signals on a Raspberry.

Thanks in advance !
 
Engineering news on Phys.org
You've basically shown a couple of block diagrams with a little extra detail. So, yes. Laughing. There are various schemes used to suppress various types of noise. What type of noise are you trying to suppress and what research have you done so far?
 
Last edited:
If you are willing to skip real time processing, then you can use Arduino to post process and replay audio. Depending on your algorithms it may take a while to post process, or it may be fast enough for real time.

You can split this project into HW and SW. The DSP SW can be developed on lots of platforms, including a PC. This is the real value added learning, IMO. The HW can be bought in many different forms. For example some of the ARM uC boards are cheap and powerful. For example Beagle Bone, which is definitely powerful enough for audio processing.
 
hugo_faurand said:
Some of you must be laughing. In fact I realized that an arduino can not do that in real time. So I wonder is it possible to do that maybe with a board similar to an arduino board ?
Back in the day, TI's TMS320 was a good DSP platform to develop signal processing applications on. It looks like the product line is still going strong with lots of variants of the original TMS320. Check out the background information at Wikipedia:

https://en.wikipedia.org/wiki/Texas_Instruments_TMS320

Then look through the various development kits you can get to start prototyping your DSP experiments:

https://www.mouser.com/c/embedded-s...ECP34xpyV5AvIoURsQrFV-UEGLch9LN4aAjPXEALw_wcB
 
Hello! I want to generate an RF magnetic field at variable frequencies (from 1 to 20 MHz) using this amplifier: https://www.minicircuits.com/WebStore/dashboard.html?model=LZY-22%2B, by passing current through a loop of current (assume the inductive resistance is negligible). How should I proceed in practice? Can i directly connect the loop to the RF amplifier? Should I add a 50 Ohm in series? Thank you!