Is it possible to retrieve some information like some id from the audio signal ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
First, you need to be sure of what information you want from the audio file and if the format that the audio signal is in supports the storage of meta data.
The following formats have some data associated with them:
1. wav: You may need to read the wav header for getting data such as sampling rate, bytes per sample etc.
2. mp3: Each mp3 file comes with an ID3 tag. These ID3 tags contain information such as date of recording, artist, album, track etc. These tags are optional and not all mp3 files may have them. You will need to find a good ID3 editor/reader to get at this information. A good place to start can be here.
Take a look at the android documentation. There may be something inbuilt (especially for wav formats – sampling rate etc.) already.
HTH,
Sriram.