i want to hide an image into audio file
2 ビュー (過去 30 日間)
古いコメントを表示
i need a coding by using lsb algorithm
6 件のコメント
回答 (2 件)
Parameswaran Bose
2014 年 12 月 27 日
hi, you can hide an image with audio file. Since I don't know matlab coding, I want to know more details about your problem. what kind of audio file matlab supports. The general thing is convert your image in to color bytes and embed those bytes in to audio data bytes. The code I have used in java is as follows,
int audioByteCount=0;
for(int i=0;i<colorBytes.length;i++){
int colorByte = colorBytes[i];
for(int bit=7; bit>=0; --bit){
int b = (colorByte >>> bit) & 1;
audioBytes[audioByteCount] = ((audioBytes[audioByteCount] & 0xFE) | b );
colorByteCount++;
}
}
rgds Parameswaran Bose
0 件のコメント
Image Analyst
2015 年 1 月 5 日
Attached is my LSB watermarking code. I think it should work with some minor modifications to handle 1D audio signal.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Audio I/O and Waveform Generation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!