[android-developers] audio to text convesion in android

2012-10-08 Thread Nakul Maheshri
Hello, I want to convert audio file into text in android audio file is located at sdcard How to do that? is there any web service is available to do that? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Media Router

2012-09-05 Thread Nakul Maheshri
is it possible in jelly Bean using Media Router class to play audio file during call so that caller can only hear?? Thanks in advance -- 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] Play audio during call

2012-08-31 Thread Nakul Maheshri
*I want to play audio file during call (like answering machine)* i am using following code final AudioManager am; MediaPlayer mp=MediaPlayer.create(getApplicationContext(),R.raw.na); am=(AudioManager) getSystemService(AUDIO_SERVICE); am.setSpeakerphoneOn(false);

[android-developers] Recording incoming call

2012-08-28 Thread Nakul Maheshri
i want to record incoming call i am using following code MediaRecorder mr = new MediaRecorder(); mr.setAudioSource(MediaRecorder.AudioSource.VOICE_CALL); mr.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); mr.setMaxDuration(1); mr.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);