Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

On Android, you can record audio from the microphone using the MediaRecorder class: MediaRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);

I want to record some parts of audio being played by a MediaPlayer instance instead (or some other audio playback device). Is that possible? How would I set a custom audio source?

To summarize; how do I stream audio into the MediaRecorder from an arbitrary audio source?

share|improve this question
Unfortunately, you can't really. Not on a stock Android device. – Femi May 1 '11 at 17:03
Thanks for your answer! Will try to find another solution to my problem :) – l33t May 1 '11 at 19:01
You're asking how to capture audio that the device is currently playing without connecting an audio patch cord from the output to the input, right? – Jeff Axelrod Sep 5 '12 at 20:11
Hi,the above post is regarding how to capture audio that the device is currently playing? Please help me if u know how to save the output or capture of currently playing audio..(I now how to do it from mic but is create lot problem..if u know any other way help mee...Thanks in Advance ) – sandeep Feb 22 at 6:42

1 Answer

Try this,

public void onClick(View arg0) {       
   Intent intent = new Intent(MediaStore.Audio.Media.RECORD_SOUND_ACTION);
   startActivityForResult(intent, RQS_RECORDING);
  }
});

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {    
 if(requestCode == RQS_RECORDING){
  savedUri = data.getData();
  Toast.makeText(this, "Saved: " + savedUri.getPath(), Toast.LENGTH_LONG).show();
 }
}
share|improve this answer
I believe that the OP was asking how to capture audio that the device is currently playing without connecting an audio patch cord from the output to the input. – Jeff Axelrod Sep 5 '12 at 20:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.