Skip to content

Instantly share code, notes, and snippets.

@murano500k
Created February 13, 2018 09:44
Show Gist options
  • Save murano500k/db7c53f0201e33f5dc135d3f77245b98 to your computer and use it in GitHub Desktop.
Save murano500k/db7c53f0201e33f5dc135d3f77245b98 to your computer and use it in GitHub Desktop.
Recording Screen
1. Connect your device with PC using wired or wireless ADB connection.
2. Open Terminal in Linux or Command Prompt and enter the following command.
adb shell screenrecord /sdcard/screen.mp4
3. To stop screen recording break using Ctrl + C
4. Now the captured video will be placed in internal sdcard. Copy the video to PC using the command.
adb pull /sdcard/screen.mp4
5. Increase bitrate of the video using the command.
adb shell screenrecord –bit-rate 12000000 /sdcard/screen.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment