README.adoc 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  1. = audiowmark - Audio Watermarking
  2. == Description
  3. `audiowmark` is an Open Source (GPL) solution for audio watermarking.
  4. A sound file is read by the software, and a 128-bit message is stored in a
  5. watermark in the output sound file. For human listeners, the files typically
  6. sound the same.
  7. However, the 128-bit message can be retrieved from the output sound file. Our
  8. tests show, that even if the file is converted to mp3 or ogg (with bitrate 128
  9. kbit/s or higher), the watermark usually can be retrieved without problems. The
  10. process of retrieving the message does not need the original audio file (blind
  11. decoding).
  12. Internally, audiowmark is using the patchwork algorithm to hide the data in the
  13. spectrum of the audio file. The signal is split into 1024 sample frames. For
  14. each frame, some pseoudo-randomly selected amplitudes of the frequency bands of
  15. a 1024-value FFTs are increased or decreased slightly, which can be detected
  16. later. The algorithm used here is inspired by
  17. Martin Steinebach: Digitale Wasserzeichen für Audiodaten.
  18. Darmstadt University of Technology 2004, ISBN 3-8322-2507-2
  19. == Open Source License
  20. `audiowmark` is *open source* software available under the *GPLv3
  21. or later* license.
  22. Copyright (C) 2018-2020 Stefan Westerfeld
  23. This program is free software: you can redistribute it and/or modify
  24. it under the terms of the GNU General Public License as published by
  25. the Free Software Foundation, either version 3 of the License, or
  26. (at your option) any later version.
  27. This program is distributed in the hope that it will be useful,
  28. but WITHOUT ANY WARRANTY; without even the implied warranty of
  29. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  30. GNU General Public License for more details.
  31. You should have received a copy of the GNU General Public License
  32. along with this program. If not, see <http://www.gnu.org/licenses/>.
  33. == Adding a Watermark
  34. To add a watermark to the soundfile in.wav with a 128-bit message (which is
  35. specified as hex-string):
  36. [subs=+quotes]
  37. ....
  38. *$ audiowmark add in.wav out.wav 0123456789abcdef0011223344556677*
  39. Input: in.wav
  40. Output: out.wav
  41. Message: 0123456789abcdef0011223344556677
  42. Strength: 10
  43. Time: 3:59
  44. Sample Rate: 48000
  45. Channels: 2
  46. Data Blocks: 4
  47. ....
  48. The most important options for adding a watermark are:
  49. --key <filename>::
  50. Use watermarking key from file <filename> (see <<key>>).
  51. --strength <s>::
  52. Set the watermarking strength (see <<strength>>).
  53. == Retrieving a Watermark
  54. To get the 128-bit message from the watermarked file, use:
  55. [subs=+quotes]
  56. ....
  57. *$ audiowmark get out.wav*
  58. pattern 0:05 0123456789abcdef0011223344556677 1.324 0.059 A
  59. pattern 0:57 0123456789abcdef0011223344556677 1.413 0.112 B
  60. pattern 0:57 0123456789abcdef0011223344556677 1.368 0.086 AB
  61. pattern 1:49 0123456789abcdef0011223344556677 1.302 0.098 A
  62. pattern 2:40 0123456789abcdef0011223344556677 1.361 0.093 B
  63. pattern 2:40 0123456789abcdef0011223344556677 1.331 0.096 AB
  64. pattern all 0123456789abcdef0011223344556677 1.350 0.054
  65. ....
  66. The output of `audiowmark get` is designed to be machine readable. Each line
  67. that starts with `pattern` contains one decoded message. The fields are
  68. seperated by one or more space characters. The first field is a *timestamp*
  69. indicating the position of the data block. The second field is the *decoded
  70. message*. For most purposes this is all you need to know.
  71. The software was designed under the assumption that you - the user - will be
  72. able to decide whether a message is correct or not. To do this, on watermarking
  73. song files, you could list each message you embedded in a database. During
  74. retrieval, you should look up each pattern `audiowmark get` outputs in the
  75. database. If the message is not found, then you should assume that a decoding
  76. error occurred. In our example each pattern was decoded correctly, because
  77. the watermark was not damaged at all, but if you for instance use lossy
  78. compression (with a low bitrate), it may happen that only some of the decoded
  79. patterns are correct. Or none, if the watermark was damaged too much.
  80. The third field is the *sync score* (higher is better). The synchronization
  81. algorithm tries to find valid data blocks in the audio file, that become
  82. candidates for decoding.
  83. The fourth field is the *decoding error* (lower is better). During message
  84. decoding, we use convolutional codes for error correction, to make the
  85. watermarking more robust.
  86. The fifth field is the *block type*. There are two types of data blocks,
  87. A blocks and B blocks. A single data block can be decoded alone, as it
  88. contains a complete message. However, if during watermark detection an
  89. A block followed by a B block was found, these two can be decoded
  90. together (then this field will be AB), resulting in even higher error
  91. correction capacity than one block alone would have.
  92. To improve the error correction capacity even further, the `all` pattern
  93. combines all data blocks that are available. The combined decoded
  94. message will often be the most reliable result (meaning that even if all
  95. other patterns were incorrect, this could still be right).
  96. The most important options for getting a watermark are:
  97. --key <filename>::
  98. Use watermarking key from file <filename> (see <<key>>).
  99. --strength <s>::
  100. Set the watermarking strength (see <<strength>>).
  101. [[key]]
  102. == Watermark Key
  103. Since the software is Open Source, a watermarking key should be used to ensure
  104. that the message bits cannot be retrieved by somebody else (which would also
  105. allow removing the watermark without loss of quality). The watermark key
  106. controls all pseudo-random parameters of the algorithm. This means that
  107. it determines which frequency bands are increased or decreased to store a
  108. 0 bit or a 1 bit. Without the key, it is impossible to decode the message
  109. bits from the audio file alone.
  110. Our watermarking key is a 128-bit AES key. A key can be generated using
  111. audiowmark gen-key test.key
  112. and can be used for the add/get commands as follows:
  113. audiowmark add --key test.key in.wav out.wav 0123456789abcdef0011223344556677
  114. audiowmark get --key test.key out.wav
  115. [[strength]]
  116. == Watermark Strength
  117. The watermark strength parameter affects how much the watermarking algorithm
  118. modifies the input signal. A stronger watermark is more audible, but also more
  119. robust against modifications. The default strength is 10. A watermark with that
  120. strength is recoverable after mp3/ogg encoding with 128kbit/s or higher. In our
  121. informal listening tests, this setting also has a very good subjective quality.
  122. A higher strength (for instance 15) would be helpful for instance if robustness
  123. against multiple conversions or conversions to low bit rates (i.e. 64kbit/s) is
  124. desired.
  125. A lower strength (for instance 6) makes the watermark less audible, but also
  126. less robust. Strengths below 5 are not recommended. To set the strength, the
  127. same value has to be passed during both, generation and retrieving the
  128. watermark. Fractional strengths (like 7.5) are possible.
  129. audiowmark add --strength 15 in.wav out.wav 0123456789abcdef0011223344556677
  130. audiowmark get --strength 15 out.wav
  131. == Video Files
  132. For video files, `videowmark` can be used to add a watermark to the audio track
  133. of video files. To add a watermark, use
  134. [subs=+quotes]
  135. ....
  136. *$ videowmark add in.avi out.avi 0123456789abcdef0011223344556677*
  137. Audio Codec: -c:a mp3 -ab 128000
  138. Input: in.avi
  139. Output: out.avi
  140. Message: 0123456789abcdef0011223344556677
  141. Strength: 10
  142. Time: 3:53
  143. Sample Rate: 44100
  144. Channels: 2
  145. Data Blocks: 4
  146. ....
  147. To detect a watermark, use
  148. [subs=+quotes]
  149. ....
  150. *$ videowmark get out.avi*
  151. pattern 0:05 0123456789abcdef0011223344556677 1.294 0.142 A
  152. pattern 0:57 0123456789abcdef0011223344556677 1.191 0.144 B
  153. pattern 0:57 0123456789abcdef0011223344556677 1.242 0.145 AB
  154. pattern 1:49 0123456789abcdef0011223344556677 1.215 0.120 A
  155. pattern 2:40 0123456789abcdef0011223344556677 1.079 0.128 B
  156. pattern 2:40 0123456789abcdef0011223344556677 1.147 0.126 AB
  157. pattern all 0123456789abcdef0011223344556677 1.195 0.104
  158. ....
  159. The key and strength can be set using the command line options
  160. --key <filename>::
  161. Use watermarking key from file <filename> (see <<key>>).
  162. --strength <s>::
  163. Set the watermarking strength (see <<strength>>).
  164. == Output as Stream
  165. Usually, an input file is read, watermarked and an output file is written.
  166. This means that it takes some time before the watermarked file can be used.
  167. An alternative is to output the watermarked file as stream to stdout. One use
  168. case is sending the watermarked file to a user via network while the
  169. watermarker is still working on the rest of the file. Here is an example how to
  170. watermark a wav file to stdout:
  171. audiowmark add in.wav - 0123456789abcdef0011223344556677 | play -
  172. In this case the file in.wav is read, watermarked, and the output is sent
  173. to stdout. The "play -" can start playing the watermarked stream while the
  174. rest of the file is being watermarked.
  175. If - is used as output, the output is a valid .wav file, so the programs
  176. running after `audiowmark` will be able to determine sample rate, number of
  177. channels, bit depth, encoding and so on from the wav header.
  178. Note that all input formats supported by audiowmark can be used in this way,
  179. for instance flac/mp3:
  180. audiowmark add in.flac - 0123456789abcdef0011223344556677 | play -
  181. audiowmark add in.mp3 - 0123456789abcdef0011223344556677 | play -
  182. == Input from Stream
  183. Similar to the output, the `audiowmark` input can be a stream. In this case,
  184. the input must be a valid .wav file. The watermarker will be able to
  185. start watermarking the input stream before all data is available. An
  186. example would be:
  187. cat in.wav | audiowmark add - out.wav 0123456789abcdef0011223344556677
  188. It is possible to do both, input from stream and output as stream.
  189. cat in.wav | audiowmark add - - 0123456789abcdef0011223344556677 | play -
  190. Streaming input is also supported for watermark detection.
  191. cat in.wav | audiowmark get -
  192. == Raw Streams
  193. So far, all streams described here are essentially wav streams, which means
  194. that the wav header allows `audiowmark` to determine sample rate, number of
  195. channels, bit depth, encoding and so forth from the stream itself, and the a
  196. wav header is written for the program after `audiowmark`, so that this can
  197. figure out the parameters of the stream.
  198. There are two cases where this is problematic. The first case is if the full
  199. length of the stream is not known at the time processing starts. Then a wav
  200. header cannot be used, as the wav file contains the length of the stream. The
  201. second case is that the program before or after `audiowmark` doesn't support wav
  202. headers.
  203. For these two cases, raw streams are available. The idea is to set all
  204. information that is needed like sample rate, number of channels,... manually.
  205. Then, headerless data can be processed from stdin and/or sent to stdout.
  206. --input-format raw::
  207. --output-format raw::
  208. --format raw::
  209. These can be used to set the input format or output format to raw. The
  210. last version sets both, input and output format to raw.
  211. --raw-rate <rate>::
  212. This should be used to set the sample rate. The input sample rate and
  213. the output sample rate will always be the same (no resampling is
  214. done by the watermarker). There is no default for the sampling rate,
  215. so this parameter must always be specified for raw streams.
  216. --raw-input-bits <bits>::
  217. --raw-output-bits <bits>::
  218. --raw-bits <bits>::
  219. The options can be used to set the input number of bits, the output number
  220. of bits or both. The number of bits can either be `16` or `24`. The default
  221. number of bits is `16`.
  222. --raw-input-endian <endian>::
  223. --raw-output-endian <endian>::
  224. --raw-endian <endian>::
  225. These options can be used to set the input/output endianness or both.
  226. The <endian> parameter can either be `little` or `big`. The default
  227. endianness is `little`.
  228. --raw-input-encoding <encoding>::
  229. --raw-output-encoding <encoding>::
  230. --raw-encoding <encoding>::
  231. These options can be used to set the input/output encoding or both.
  232. The <encoding> parameter can either be `signed` or `unsigned`. The
  233. default encoding is `signed`.
  234. --raw-channels <channels>::
  235. This can be used to set the number of channels. Note that the number
  236. of input channels and the number of output channels must always be the
  237. same. The watermarker has been designed and tested for stereo files,
  238. so the number of channels should really be `2`. This is also the
  239. default.
  240. == Dependencies
  241. If you compile from source, `audiowmark` needs the following libraries:
  242. * libfftw3
  243. * libsndfile
  244. * libgcrypt
  245. * libzita-resampler
  246. * libmpg123
  247. == Building fftw
  248. `audiowmark` needs the single prevision variant of fftw3.
  249. If you are building fftw3 from source, use the `--enable-float`
  250. configure parameter to build it, e.g.::
  251. cd ${FFTW3_SOURCE}
  252. ./configure --enable-float --enable-sse && \
  253. make && \
  254. sudo make install
  255. or, when building from git
  256. cd ${FFTW3_GIT}
  257. ./bootstrap.sh --enable-shared --enable-sse --enable-float && \
  258. make && \
  259. sudo make install
  260. == Docker Build
  261. You should be able to execute `audiowmark` via Docker.
  262. Example that outputs the usage message:
  263. docker build -t audiowmark .
  264. docker run -v <local-data-directory>:/data -it audiowmark -h