Problem
config.py:19 defines ALLOWED_AUDIO_EXTENSIONS with .aac and .wma, but main.py:184 limits the file uploader to ["mp3", "wav", "m4a", "ogg"].
Solution
Either add .aac and .wma to the file uploader, or remove them from ALLOWED_AUDIO_EXTENSIONS.
Acceptance Criteria
Difficulty: Easy
Problem
config.py:19definesALLOWED_AUDIO_EXTENSIONSwith.aacand.wma, butmain.py:184limits the file uploader to["mp3", "wav", "m4a", "ogg"].Solution
Either add
.aacand.wmato the file uploader, or remove them fromALLOWED_AUDIO_EXTENSIONS.Acceptance Criteria
Difficulty: Easy