Skip to content

Instantly share code, notes, and snippets.

@ookami-kb
Created June 15, 2020 16:33
Show Gist options
  • Save ookami-kb/938705ae02f2176705cb9d94f85cee8f to your computer and use it in GitHub Desktop.
Save ookami-kb/938705ae02f2176705cb9d94f85cee8f to your computer and use it in GitHub Desktop.
start_recording() {
# Each video is 3 minutes max, so 5 videos will give us up to 15 minutes,
# should be enough for test
$ANDROID_HOME/platform-tools/adb shell mkdir /sdcard/video
$ANDROID_HOME/platform-tools/adb shell screenrecord /sdcard/video/1.mp4
$ANDROID_HOME/platform-tools/adb shell screenrecord /sdcard/video/2.mp4
$ANDROID_HOME/platform-tools/adb shell screenrecord /sdcard/video/3.mp4
$ANDROID_HOME/platform-tools/adb shell screenrecord /sdcard/video/4.mp4
$ANDROID_HOME/platform-tools/adb shell screenrecord /sdcard/video/5.mp4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment