Left and right channel frequency. #1616
-
I am working on what is basically an MP3 player with a tweeter and subwoofer, and I was wondering if it was possible to use filters on the mp3 files in such a way that one range of frequencies will play on one channel (left or right) and another range on the opposite channel, so that only the bass range will play on the subwoofer, and everything else on the tweeter. I'm just using the player-sd-audiokit example right now. /**
#include "AudioTools.h" const char startFilePath="/"; void next(bool, int, void*) { void previous(bool, int, void*) { void startStop(bool, int, void*) { void setup() { // setup output // setup additional buttons // setup player } void loop() { |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Just specify a FilteredStream that has the kit as output and define different filters on the left and right channels |
Beta Was this translation helpful? Give feedback.
Just specify a FilteredStream that has the kit as output and define different filters on the left and right channels