[android-developers] Re: SoundRecordingDemo in v1.0

2008-12-15 Thread ste
To my knowledge, ffmpeg is the only available application I've found which can convert these files into something more useable(wav, mp3) I've just finished setting up a server which uses ffmpeg to get the audio data out of files recorded by the phone. If you need any help, let me know. It took m

[android-developers] Re: SoundRecordingDemo in v1.0

2008-11-19 Thread Alvin Yates
It is a 3gp file. If you want the AMR data, you'll have to use ffmpeg to rip it directly (As far as I'm aware). That will require some knowhow and the ability to compile the source from CVS, since ffmpeg isn't a typical open source project in the sense it has release builds of any kind. There's

[android-developers] Re: SoundRecordingDemo in v1.0

2008-11-19 Thread bluekidjoe
Excuse me... Could anyone give me the SoundRecordingDemo app??? I have already spent a lot time... but in vain... Besides, I followed the source code described in the following hyperlink: http://code.google.com/android/reference/android/media/MediaRecorder.html. recorder.setOutputFormat(MediaRec

[android-developers] Re: SoundRecordingDemo in v1.0

2008-10-01 Thread De San Nicolas Jean Philippe
hello, you can record with the emulator. if, for example, you're running the SoundRecordDemo, it records from the emulator. it works for me. 2008/10/2 april <[EMAIL PROTECTED]> > > my question is how you record it using emulator? Could you give me the > instructions? > > Thanks! > > April > > On

[android-developers] Re: SoundRecordingDemo in v1.0

2008-10-01 Thread De San Nicolas Jean Philippe
yes you can. the format is .amr and you can read it with the mediaplayer. -:) 2008/10/1 april <[EMAIL PROTECTED]> > > How do you test the code without real phone? Can you record from > emulator? what is the format of sound? > > Thank! > > On Oct 1, 9:25 am, Guillaume Perrot <[EMAIL PROTECTED]> w

[android-developers] Re: SoundRecordingDemo in v1.0

2008-10-01 Thread april
How do you test the code without real phone? Can you record from emulator? what is the format of sound? Thank! On Oct 1, 9:25 am, Guillaume Perrot <[EMAIL PROTECTED]> wrote: > Eventually I used a "hidden" default intent to capture a sound and > retrieve the audio file: new > Intent(MediaStore.Au

[android-developers] Re: SoundRecordingDemo in v1.0

2008-10-01 Thread Guillaume Perrot
Eventually I used a "hidden" default intent to capture a sound and retrieve the audio file: new Intent(MediaStore.Audio.Media.RECORD_SOUND_ACTION); On 1 oct, 15:12, Guillaume Perrot <[EMAIL PROTECTED]> wrote: > I found SoundRecordingDemo in the mailing list files. > I tried this because I try to