i want to hide an image into audio file

i need a coding by using lsb algorithm

6 件のコメント

Geoff Hayes
Geoff Hayes 2014 年 12 月 27 日
What have you tried so far? Please discuss what you have attempted and where you are getting stuck in the code. If you are observing errors, then please include the full error message in your post.
Image Analyst
Image Analyst 2014 年 12 月 27 日
Since images are usually much much larger than audio signals, your audio file would have to be very long. I have an LSB algorithm for hiding images into a 2D array - I suppose you could adapt it for a 1D signal as long as the signal was long enough.
hemalatha
hemalatha 2015 年 1 月 5 日
not yet started sir.i need the algorithm..which algorithm is suitable for audio steganography. i studied lsb algorithm produce noise in output audio file.then which algorithm is suited..help me
hemalatha
hemalatha 2015 年 1 月 24 日
the audio samples are in floating point..if i convert the floating point into binary and then i hide the image pixels(binary value) means i got some other values..help me binary value of speech signal value is 1 0 1 1 0 1 1 1 like tat means i want to replace the last bit by image first binary value(1) means i get 1 0 1 1 0 1 1 49..what is the reason for 49?
Image Analyst
Image Analyst 2015 年 1 月 24 日
49 is the ASCII value of 1. I'm not sure what you are doing.
hemalatha
hemalatha 2015 年 2 月 2 日
audio steganography...i want to hide an image into .wav file..in that i faced the above problem..

サインインしてコメントする。

回答 (2 件)

Parameswaran Bose
Parameswaran Bose 2014 年 12 月 27 日

0 投票

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
Image Analyst
Image Analyst 2015 年 1 月 5 日

0 投票

Attached is my LSB watermarking code. I think it should work with some minor modifications to handle 1D audio signal.

カテゴリ

ヘルプ センター および File ExchangeSignal Processing Toolbox についてさらに検索

質問済み:

2014 年 12 月 25 日

コメント済み:

2015 年 2 月 2 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by