But after upgrading to version 2.5.0, which is the latest version, there's a bug that produces a lot of invalid results so that you don't know which message is the right one.
try opening "%USERPROFILE%\AppData\Local\Programs\audfprint-gui\resources\app.asar" with HxD (Freeware Hex Editor and Disk Editor)
and search
getAudfprintScript(['match', '-N', 2, '-d', dbFilename, ...precomputePaths, '-R']);from:
getAudfprintScript(['match', '-N',
2, '-d', dbFilename, ...precomputePaths, '-R']);
to:
getAudfprintScript(['match', '-N',
5, '-d', dbFilename, ...precomputePaths, '-R']);
or goto bytes offset 9931195 (9789BB) and change from 2 to 5 (5 is default for audfprint.py)
to fix a lot of invalid results.