How to make an audio processing device for noise reduction ?

AI Thread 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
 
Hey guys. I have a question related to electricity and alternating current. Say an alien fictional society developed electricity, and settled on a standard like 73V AC current at 46 Hz. How would appliances be designed, and what impact would the lower frequency and voltage have on transformers, wiring, TVs, computers, LEDs, motors, and heating, assuming the laws of physics and technology are the same as on Earth?
While I was rolling out a shielded cable, a though came to my mind - what happens to the current flow in the cable if there came a short between the wire and the shield in both ends of the cable? For simplicity, lets assume a 1-wire copper wire wrapped in an aluminum shield. The wire and the shield has the same cross section area. There are insulating material between them, and in both ends there is a short between them. My first thought, the total resistance of the cable would be reduced...
I used to be an HVAC technician. One time I had a service call in which there was no power to the thermostat. The thermostat did not have power because the fuse in the air handler was blown. The fuse in the air handler was blown because there was a low voltage short. The rubber coating on one of the thermostat wires was chewed off by a rodent. The exposed metal in the thermostat wire was touching the metal cabinet of the air handler. This was a low voltage short. This low voltage...
Back
Top