hello guys im working on a project of video steganography that combine with cryptography encryption on the text that is going to be embed into the video...but now i have problem with LSB technique..
the steps that i know to do is to break the video into frames, convert one frame into binary and embed the text in the lsb of the binary frame format..i have no idea how the coding will be..i've got this coding where it embed the text in red channel of the frame..is this code can be use?
1 2 3 4
if (readNextBit())
pixels[y][x][red]|=1;
else
pixels[y][x][red]&=~1;