A simple app to play sounds and show letters when the keyboard is used.
mac setup:
brew install pyqt
/usr/local/opt/python@3.8/bin/python3 -m venv venv
source venv/bin/activate
pip install -Ur requirements.txtlater when you come back:
source venv/bin/activatelinux setup:
pip install -Ur requirements.txt
sudo apt-get install qt6-base-dev pulseaudioand to run:
python3 main.pyI use the mac Memo app to record audio files, which creates a m4a file. To convert this to a wave file, use the following ffmpeg command:
ffmpeg -i inputFilename.m4a OutputFilename.wav
