README 613 B

12345678910111213141516171819202122232425262728293031
  1. Audio Watermarking
  2. (TODO)
  3. Building fftw
  4. audiowmark needs the single prevision variant of fftw3.
  5. If you are building fftw3 from source, use the `--enable-float`
  6. configure parameter to build it, e.g.::
  7. cd ${FFTW3_SOURCE}
  8. ./configure --enable-float --enable-sse && \
  9. make && \
  10. sudo make install
  11. or, when building from git
  12. cd ${FFTW3_GIT}
  13. ./bootstrap.sh --enable-shared --enable-sse --enable-float && \
  14. make && \
  15. sudo make install
  16. Docker Build
  17. You should be able to execute audiowmark via Docker.
  18. Example that outputs the usage message:
  19. docker build -t audiowmark .
  20. docker run -it audiowmark -h