3

I'm searching a tool or a method to record an Android App including Audio on a Android phone. On my research I found a similar question and three tools. But no one can't record video and audio together.

Similar question:

Tools:

Edit

I found a app solution named Screencast Video Recorder Demo which records video and audio. But you have to root the phone to use this app. Is there another possibility?

Update February 2 2019

I just stumbled over this developer android page called "Record a video" which seems to solve my question when using Android Studio:

Logcat lets you record an MP4 video from your hardware device for a maximum of three minutes. You can, for example, use the video for your marketing materials or for debugging.

  1. Open an app project.
  2. Run the app on a hardware device.
  3. Click View > Tool Windows > Logcat.
  4. Interact with the display on the hardware device to stage the start of the video.
  5. Click Screen Record in the left side of the Logcat window.
  6. In the Screen Recorder Options dialog, set the recording options:

    • Bit Rate: Enter a bit rate. The default is 4 Mbps.
    • Resolution: Enter a width and height value in pixels. The value must be a multiple of 16. The default is the resolution of the device.
    • Show Taps: Enables visual feedback for taps.
  7. Click Start Recording to start the recording.
  8. Click Stop Recording to stop the recording.
  9. In the Save As dialog, save the MP4 file.
  10. In the Screen Recorder dialog, click one of the buttons to show the file location, open the recording in a player, or dismiss the dialog.
Bruno Bieri
  • 9,724
  • 11
  • 63
  • 92
  • What is the Android version you want that functionality working on? By the way, [Mobizen](https://www.mobizen.com) is for you! It is compatible from Android 4.4.4 for sure. – Francesco Oct 24 '16 at 08:49
  • 1
    See my answer here https://stackoverflow.com/questions/24200437/record-tablets-screen-and-audio/48097779#48097779 – noraj Jan 04 '18 at 14:54
  • @noraj It's been a while since I asked this question, but thanks. – Bruno Bieri Jan 04 '18 at 16:53

1 Answers1

0

There's no portable way of recording the audio that's being played on the phone. Unless you use the internal mic to record the sound coming from the internal loudspeaker, which A) will result in an extremely poor recording, and B) fails completely if the user has attached e.g. a wired headset.

Michael
  • 57,169
  • 9
  • 80
  • 125
  • Thanks for your answer. It would really be interesting how the big game developing companies do that: https://play.google.com/store/apps/category/ARCADE?feature=category-nav – Bruno Bieri Oct 02 '12 at 15:14
  • @viperbone: Grab videos of their games with sound..? I don't know - but I know what I'd probably do: get a capture card / PVR with HDMI input and connect it to the phone's HDMI/MHL output. – Michael Oct 02 '12 at 18:05
  • Yes, grab videos of their games with sound. Ok, thanks I'll check that. – Bruno Bieri Oct 02 '12 at 18:26