Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm researching this so assume newbie.

I want to add a few bytes of data to a sound file (for example a song). The sound file will be transmitted via radio to a received who uses for example iPhone microphone to pick up the sound and an application will show the original bytes of data. Preferrably it should not be hearable for humans.

What is such technology called? Are there any applications that can do this? Libraries/Apps that can be used on iPhone?

Any input from people who know some about this is appreciated! :)

share|improve this question
I think you'll have difficulty with the "not hearable for humans" part, as the sound is most likely going to be compressed with a lossy algorithm, and what is "lost" first is usually the human-inaudible sound. – San Jacinto Dec 5 '10 at 14:09

2 Answers

up vote 1 down vote accepted

I've done some research and it seems the way to go is:

  • Use low audio frequencies.
  • Spread the "bits" around randomly - do not use a pattern as it will be picked up by the listener. "White noise" is a good clue. The random pattern is known by sender and receiver.
  • Use fourier transform to pick up freq/amp.
  • Clean up input data.
  • Use checksum/redundancy-algorithms to compensate for loss.

I'm writing a prototype and having a bit difficulty in picking up the right frequency as if has a ~4Hz offset (100Hz becomes 96.xHz when played and picked up by mic).

This is not the answer, but I hope it helps.

share|improve this answer

Its audio Steganography there are algorithms to do it refer here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.