Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Record tablet's screen AND audio

I've been wondering, after trying this command on my Nexus 7:

adb shell screenrecord /sdcard/demo.mp4

Is there a way to record the screen AND audio of the tablet using the factory screenrecord command? Checking the Android documentation, it says nothing about recording the audio too, but we all know the Android documentation is not that complete

like image 600
Sergi Juanola Avatar asked Jun 13 '14 07:06

Sergi Juanola


People also ask

How to screen record on a Samsung tablet?

There are 2 main ways to do screen recording on a Samsung tablet. The first one is to use the built-in Screen Recorder app. This app lets you record your screen in real-time or as a video. Another way to screen record is to use a third-party app. These apps let you record your screen in high quality or as a video.

How do I record audio from my Android phone?

Audio can also be recorded through the device’s microphone and with additional sounds. The screen recorder comes with video editing features including crop, subtitles, music, video speed, merge, screenshots, and draw. You can shake the phone to stop the screen recorder and pause/resume using the notification shade.

How do I record the sound of my screen?

1 Download and Install Screenrec For Windows; 2 Press Alt + S to select screen capture area and click the audio toggle to enable system sound recording; 3 Click the video camera to start recording

What can be recorded on the screen recorder?

Audio can also be recorded through the device’s microphone and with additional sounds. The screen recorder comes with video editing features including crop, subtitles, music, video speed, merge, screenshots, and draw.


1 Answers

I could do it this way :

  • connect the Android device to computer with a jack cable (headphone output to microphone input);
  • record video with adb shell;
  • record audio with Audacity (or anything else)
  • then merge video and audio with a video editor (pitivi, openshot, avconv...)
like image 154
JeffProd Avatar answered Oct 07 '22 05:10

JeffProd