Zend certified PHP/Magento developer

Batch detect/music recognition on folder of .wav files

Looking for a way to do batch music recognition on a folder of .wav files similar to that of Shazam/Google Assistant. My current process is going through each file one at a time and running it through Shazam/Google Assistant but this is obviously a less than ideal method of detection and takes a very very long time to complete especially when these batches get to become upwards of 100 files. Looking for a way to complete this process or even automate it in some fashion such that it either takes the same amount of time but can be run as a background task or can be done quickly with some sort of offline detection program.

The output would simply the file name then either a positive detection and the song that was detected or no detection.

Any ideas?