Hello,
I have the following problem - In my android app I need to send the recorded sound (I am using the AudioRecorder class) to a server. Now as far as I know the AudioRecorder class gives the data in a .raw format yes? But the server can only accept .wav files. So what I need to do is to covert the recorder samples to a .wav format. Does any one have any experience on this topic? Can any one give an advice on how to do this in android Java environment?
PS: I am also worried about the endianess problems that my occur.