I am recording certain audio files using the builtin media recording API , here is the relevant code for recording
mRecorder = new MediaRecorder();
mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
mRecorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
mRecorder.setOutputFile(mFileName);
mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AAC);
then I upload said file to server , now when I try to play it , mediaplayer is simply unable to do so.
here is streaming code
mediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
mediaPlayer.setDataSource(filePath);
mediaPlayer.prepareAsync();
what settings should I use to be able to allow streaming for audio.