Re: [android-developers] MediaRecorder.start fails

2012-03-14 Thread TreKing
On Sun, Mar 11, 2012 at 10:41 PM, mgah wrote: > Any ideas? Did you try googling the exact error? - TreKing - Chicago transit tracking app for And

[android-developers] MediaRecorder.start fails

2012-03-11 Thread mgah
Does anyone know why MediaRecorder.start() returns "start failed -2147483648"? I followed the state machine in the Camera description and I am able to see the camera on my phone but when I start to record, i get that error. Any ideas? Thanks -- You received this message because you are subscri

Re: [android-developers] MediaRecorder.start() fails

2011-09-13 Thread Michael Banzon
I would try it on a device. The emulator usually makes audio handeling a pain (for me) and generally doesn't work (for me). On Tuesday, September 13, 2011, Matthew Fleming wrote: > Hi, > > I have the following ridiculously simple code which for some reason is > not working: > > recorder = new Med

[android-developers] MediaRecorder.start() fails

2011-09-13 Thread Matthew Fleming
Hi, I have the following ridiculously simple code which for some reason is not working: recorder = new MediaRecorder(); recorder.setAudioSource(MediaRecorder.AudioSource.MIC); recorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4); recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);