[android-developers] Re: Can i convert AMR to MP3 OR WAV in my activity?

2012-10-21 Thread Mr. Andy Rocket
Hello. I have the same problem, convert amr to mp3. But it seems like you have already found out that it is not possible. so in my case. I will solve my problem by play my amr recordings on a good stereo, and record the sound. so maybe that's an idea for you to:) good Luck -Andy Rocket

[android-developers] Re: Can i convert AMR to MP3 OR WAV in my activity?

2009-03-23 Thread zeeshan
can anyone help me? i am really stuck on this problem. i need to convert a recorded file from AMR to MP3. i am using this code for recording Intent intent = new Intent (MediaStore.Audio.Media.RECORD_SOUND_ACTION); startActivityForResult(intent, SELECT_AUDIO); protected void onActivi

[android-developers] Re: Can i convert AMR to MP3 OR WAV in my activity?

2009-03-19 Thread zeeshan
? On Mar 18, 2:31 pm, zeeshan wrote: > Thanks for reply Dave, > > can anyone tell me how can i do this, i assume to install any > converter application and use it in my code to convert and return the > mp3 uri > > please help me - > > On Mar 18, 10:31 am, Dave Sparks wrote: > > > > > No, there

[android-developers] Re: Can i convert AMR to MP3 OR WAV in my activity?

2009-03-18 Thread zeeshan
Thanks for reply Dave, can anyone tell me how can i do this, i assume to install any converter application and use it in my code to convert and return the mp3 uri please help me - On Mar 18, 10:31 am, Dave Sparks wrote: > No, there is no built-in package to convert from AMR to MP3 or WAVE. > I

[android-developers] Re: Can i convert AMR to MP3 OR WAV in my activity?

2009-03-18 Thread Dave Sparks
No, there is no built-in package to convert from AMR to MP3 or WAVE. If you want to do this in the current SDK, you'll need to write your own code to do the conversion. On Mar 18, 2:44 am, zeeshan wrote: > Hi Android Experts, > > i want to convert recorded AMR sound into mp3 or WAV within my > a