[android-developers] Re: what is the recording format of Intent .RECORD_SOUND_ACTION?

2009-04-12 Thread bw
Try looking at the source code for RingDroid: http://code.google.com/p/ringdroid/source/checkout Particularly the CheapAMR and CheapMP3 classes which can read/write these formats: http://code.google.com/p/ringdroid/source/browse/#svn/trunk/src/com/ringdroid/soundfile On Mar 13, 5:27 am,

[android-developers] Re: what is the recording format of Intent .RECORD_SOUND_ACTION?

2009-04-12 Thread Marco Nelissen
They don't really decode let alone encode those formats though, hence the 'cheap' moniker. Short of porting a full mp3 encoder to android, there is no way to convert sound to mp3 format on the phone. On Sun, Apr 12, 2009 at 11:40 AM, bw ben.weisb...@gmail.com wrote: Try looking at the source

[android-developers] Re: what is the recording format of Intent .RECORD_SOUND_ACTION?

2009-03-05 Thread zeeshan
thanks for the reply Dave, i was really waiting for it. is there any way to transcode it in mp3 after record finish. i need this kind of output: Intent intent = new Intent (MediaStore.Audio.Media.RECORD_SOUND_ACTION); startActivityForResult(intent, ACTIVITY_RECORD_SOUND); protected void

[android-developers] Re: what is the recording format of Intent .RECORD_SOUND_ACTION?

2009-03-04 Thread Dave Sparks
The only audio format supported on G1 is AMR format (raw .AMR file). On Mar 4, 1:18 pm, zeeshan genx...@gmail.com wrote: Hi, can anyone tell me what is the default format of android recording. i have recorded an audio clip but dont know how can i check its extention? i am using this