[android-developers] Re: speech recording

2011-12-05 Thread rachana govilkar
hey hi even i am facing d same problem code am writing to capture audio is given in android guide itself check this link http://developer.android.com/guide/topics/media/audio-capture.html but it is giving me error for prepare method in StartRecording() LogCat is: 12-05

Re: [android-developers] Re: speech recording

2011-12-05 Thread Raghav Sood
I'd say that your error is coming from one of lines 74, 30, 28 or 88. At least that's what the LogCat says. If you look closer, you will notice that your prepare() method has failed to work and has given you an exception. 12-05 16:11:39.442: ERROR/AudioRecordTest(309): prepare() failed 12-05

[android-developers] Re: speech recording

2011-12-05 Thread rachana govilkar
yes thank u for quick reply :) coz i did mention this question on my thread also. n yes it is giving me exceptionIllegalStateException but y so?? i mean i have just wrote program same as provided on d link my program is... package com.privacygram.activity; import

[android-developers] Re: speech recording

2011-12-05 Thread rachana govilkar
n sorry for bad english. On Dec 5, 5:25 pm, rachana govilkar rachana.govil...@gmail.com wrote: yes thank u for quick reply :) coz i did mention this question on my thread also. n yes it is giving me exceptionIllegalStateException but y so?? i mean i have just wrote program

[android-developers] Re: speech recording

2011-11-02 Thread ktuluceng
hi, Again me :) ı correct my code and new code is here ; package Uygulamalarim.Sesdeneme; import java.io.IOException; import android.app.Activity; import android.media.MediaRecorder; import android.os.Bundle; import android.os.Environment; import android.view.View; import

[android-developers] Re: speech recording

2011-11-02 Thread Mike
you need at least these permissions in your AndroidManifest file uses-permission android:name=android.permission.WRITE_EXTERNAL_STORAGE / uses-permission android:name=android.permission.RECORD_AUDIO / On Nov 2, 7:09 am, ktuluceng asimturgut.somuncu...@gmail.com wrote: 11-02

[android-developers] Re: speech recording

2011-10-25 Thread Jeremy Dagorn
And what about the error? Logcat? On Oct 24, 6:41 pm, Asım Turgut SOMUNCUOĞLU asimturgut.somuncu...@gmail.com wrote: hi  jeremy, my code is ; import java.io.IOException; import android.app.Activity; import android.media.MediaRecorder; import android.os.Bundle; import android.view.View;

[android-developers] Re: speech recording

2011-10-25 Thread ktuluceng
ı dont know :S normally this code runing nonerror but clik the record button this program said that . . . . application has been stopped -- 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] Re: speech recording

2011-10-25 Thread Jeremy Dagorn
Ok, so if you are on Eclipse, you should go in the LogCat tab. And give us the part where the error is printed. It will be in red font. (I presume you don't use the logcat to debug that's why I'm explaining. If so, sorry to tell you such a simple thing). Without the error it is not easy to find

[android-developers] Re: speech recording

2011-10-25 Thread Jeremy Dagorn
By the way, look at your setOutputFile. I guess you want to store your recording on the sdcard, not in your C:/ folder because it is not existing :) On Oct 25, 3:45 pm, ktuluceng asimturgut.somuncu...@gmail.com wrote: ý dont know :S normally this code runing nonerror but clik the record button

[android-developers] Re: speech recording

2011-10-24 Thread Jeremy Dagorn
Hi, Could you give some code and raised error(s)? Jeremy On Oct 21, 8:36 pm, ktuluceng asimturgut.somuncu...@gmail.com wrote: how to make speech recording application for android please help me my cod is true but ı dont understand application has stopped  erorr :S ı folllow this

Re: [android-developers] Re: speech recording

2011-10-24 Thread Asım Turgut SOMUNCUOĞLU
hi jeremy, my code is ; import java.io.IOException; import android.app.Activity; import android.media.MediaRecorder; import android.os.Bundle; import android.view.View; import android.widget.Button; public class SesdenemeActivity extends Activity { /** Called when the activity is first