I want to work with some audio analysis and want to use the Phash perceptual algorithm. Here's a Java implementation I want to use.
I'm having trouble adding this project as a dependency; I don't see how to run mvn package test install
to get this project linked.
Similarly, this project needs this other project to read the audio files. When I try to install the library using the cmake
commands I get errors like sndfile.h: No such file or directory
. This Stackoverflow answer shows how to install it, but I still get the sndfile.h: No such file or directory
error. I'm on a Mac, by the way. I found the sndfile.h
file and copied it to the directory, but the build didn't work in the end anyway.
I feel like this isn't the right way to do this and things should "work" after doing the basic install commands listed in the repositories. What am I missing?