If I have an original audio frame in Android, how to encode it using AMR AAC, or any other encoder?
Asked
Active
Viewed 396 times
1 Answers
0
You mean something like this?
// Specify the audio and video encoding
mediaRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.DEFAULT);

Komi
- 330
- 3
- 13
-
1Not exactly that way. What I want is to encode a pure audio frame piled in an array like "byte in[]" and encode it into "byte[]out" . – limitfan Mar 02 '11 at 15:08