Created
June 15, 2020 16:33
-
-
Save ookami-kb/938705ae02f2176705cb9d94f85cee8f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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