Hide files into images or audio samples using the Least Significant Bit.
$ git clone https://github.com/r-salas/media-steganography
$ cd media-steganography
$ pip install -r requirements.txt
$ python image.py encode <file> <base_image> <carrier>
For example:
$ python image.py encode examples/secret.txt examples/tree.png examples/hidden.png
$ python image.py decode <carrier> <file>
For example
$ python image.py decode examples/hidden.png examples/decoded.txt
$ python audio.py encode <file> <base_audio> <carrier>
For example:
$ python audio.py encode examples/secret.txt examples/cantina.wav examples/hidden.wav
$ python audio.py decode <carrier> <file>
For example
$ python audio.py decode examples/hidden.wav examples/decoded.txt