[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-   

On Wednesday, March 18, 2009 10:44:15 AM UTC+1, genxsol wrote:

 Hi Android Experts, 

 i want to convert recorded AMR sound into mp3 or WAV within my 
 activity, is there any method or package i can use? 

 i am using this activity for recording: 

 Intent intent = new Intent 
 (MediaStore.Audio.Media.RECORD_SOUND_ACTION); 
  startActivityForResult(intent, SELECT_AUDIO); 

 this gives me amr content uri but my question is , how can i get the 
 mp3/wav uri? 

 i posted this question long ago but still no solution, please help me 
 as i am really stuck on this. 

 Thanks

-- 
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

[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 onActivityResult(int requestCode, int resultCode,
Intent data) {

.

Uri selectedAudio = data.getData();


at the moment this Uri is the recorded amr file but i really need mp3/
wav format for some reason.
any solution would be appreciated!


thanks
On Mar 19, 9:21 am, zeeshan genx...@gmail.com wrote:
 ?

 On Mar 18, 2:31 pm,zeeshangenx...@gmail.com 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 davidspa...@android.com wrote:

   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,zeeshangenx...@gmail.com wrote:

Hi Android Experts,

i want to convert recorded AMR sound into mp3 or WAV within my
activity, is there any method or package i can use?

i am using this activity for recording:

Intent intent = new Intent
(MediaStore.Audio.Media.RECORD_SOUND_ACTION);
 startActivityForResult(intent, SELECT_AUDIO);

this gives me amr content uri but my question is , how can i get the
mp3/wav uri?

i posted this question long ago but still no solution, please help me
as i am really stuck on this.

Thanks- Hide quoted text -

   - Show quoted text -- Hide quoted text -

  - Show quoted text -- Hide quoted text -

 - Show quoted text -
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[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 genx...@gmail.com 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 davidspa...@android.com wrote:



  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 genx...@gmail.com wrote:

   Hi Android Experts,

   i want to convert recorded AMR sound into mp3 or WAV within my
   activity, is there any method or package i can use?

   i am using this activity for recording:

   Intent intent = new Intent
   (MediaStore.Audio.Media.RECORD_SOUND_ACTION);
    startActivityForResult(intent, SELECT_AUDIO);

   this gives me amr content uri but my question is , how can i get the
   mp3/wav uri?

   i posted this question long ago but still no solution, please help me
   as i am really stuck on this.

   Thanks- Hide quoted text -

  - Show quoted text -- Hide quoted text -

 - Show quoted text -
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[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 genx...@gmail.com wrote:
 Hi Android Experts,

 i want to convert recorded AMR sound into mp3 or WAV within my
 activity, is there any method or package i can use?

 i am using this activity for recording:

 Intent intent = new Intent
 (MediaStore.Audio.Media.RECORD_SOUND_ACTION);
  startActivityForResult(intent, SELECT_AUDIO);

 this gives me amr content uri but my question is , how can i get the
 mp3/wav uri?

 i posted this question long ago but still no solution, please help me
 as i am really stuck on this.

 Thanks
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[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 davidspa...@android.com wrote:
 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 genx...@gmail.com wrote:



  Hi Android Experts,

  i want to convert recorded AMR sound into mp3 or WAV within my
  activity, is there any method or package i can use?

  i am using this activity for recording:

  Intent intent = new Intent
  (MediaStore.Audio.Media.RECORD_SOUND_ACTION);
   startActivityForResult(intent, SELECT_AUDIO);

  this gives me amr content uri but my question is , how can i get the
  mp3/wav uri?

  i posted this question long ago but still no solution, please help me
  as i am really stuck on this.

  Thanks- Hide quoted text -

 - Show quoted text -
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---