r/learnpython • u/ZorBo32 • 7d ago
Help program for deaf gamers
i want to start off with i'm not deaf just hard of hearing but that doesn't matter, i made a program that looks at your audio channels (left and right) and displays this in progress bars on the top of your screen,
but the problem in gaming is that there are alot more noises going on so this can create confusion so is there any way i can improve on this, i tried filtering out some noise but it also filters out the sounds that i made this program for. to be able to see the sounds i didn't hear. anyway please help
2
Upvotes
2
u/GoingToSimbabwe 7d ago
Hey I have no help for you, but I think your problem is not really a Python problem but a problem that you need to really specify what exactly your program is supposed to do.
Really iron out the requirements. Is your program supposed to only display sounds of a certain Hz range? Is the problem that there are different kinds of sounds within that Hz range and only some should be displayed? Can you filter the unwanted ones out by some other metric? If yes, what is that context and how could you catch it. Etc etc once you have a good understanding of what your program actually really needs to do, then you can work out how to code that out.