Greetings, everyone. I have been working on a new project and wanted to share my progress. I wrote a Python script that allows me to embed hidden messages into WAV audio files. This method leverages steganography, specifically designed for audio files. The script can encode text messages into the audio file without altering its perceptible quality. If anyone is interested in the technical details or has suggestions for improvements, feel free to ask.
Impressive work, @d34th. How are you handling the encoding process? Are you using LSB (Least Significant Bit) steganography, or did you come up with a different technique?
It’s LSB. I didn’t create anything groundbreaking lol.
Pretty cool, man. Does the script support batch processing? Like, can it embed messages into multiple files at once?
Nope just single processing for one file at a time.
niiiice work d34th! wat if we wanna extract the msg? does ur script do that too?
Nope, but I do have a separate script that does that. Maybe one day I’ll combine them.
Wow, impressive! Can this method be applied to other audio formats like MP3, or is it strictly for WAV files?
Right now it’s just for WAV. MP3 has been tricky for me.