Hi. I am writing a media record/player on my Android 2.1 Emulator. I have successfuly recorded an audio in the AMR format and can play it back too. However, the playback is slow. About 50% speed. I am wondering if this is an issue with the Emulator. I do not have a real device to test on. I was wondering if anyone had experienced this.
Below is some setup code. Hope it helps. Thanks! Chris // Recorder MR=new MediaRecorder(); MR.setAudioSource(MediaRecorder.AudioSource.MIC); MR.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); MR.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB); // Player MP = new MediaPlayer(); -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en