https://uplex.de/audiowmark/

Stefan Westerfeld 9169733339 Move windowing code out of the inner compute_frame_ffts loop. пре 6 година
src 9169733339 Move windowing code out of the inner compute_frame_ffts loop. пре 6 година
.gitignore 6a3ae16a91 Add .gitignore пре 6 година
Dockerfile f46ad16973 Add Dockerfile пре 6 година
Makefile.am f46ad16973 Add Dockerfile пре 6 година
README f46ad16973 Add Dockerfile пре 6 година
autogen.sh f46ad16973 Add Dockerfile пре 6 година
configure.ac 9b87c34ac7 BUILD: use -Wall пре 6 година

README

Audio Watermarking

(TODO)

Building fftw

audiowmark needs the single prevision variant of fftw3.

If you are building fftw3 from source, use the `--enable-float`
configure parameter to build it, e.g.::

cd ${FFTW3_SOURCE}
./configure --enable-float --enable-sse && \
make && \
sudo make install

or, when building from git

cd ${FFTW3_GIT}
./bootstrap.sh --enable-shared --enable-sse --enable-float && \
make && \
sudo make install

Docker Build

You should be able to execute audiowmark via Docker.
Example that outputs the usage message:

docker build -t audiowmark .
docker run -it audiowmark -h