Introduction
This article was created to present you with how to take a screenshot or screen record using these specific ADB commands.
Note that, this requires ADB access to the STB.
Instructions
Screenshot
1) To take a snapshot run the following command on the ADB command line:
adb shell screencap -p /sdcard/screen.png
2) Afterwards, grab the screenshot from /sdcard/screen.png to the current directory of your PC.
adb pull /sdcard/screen.png
Screen Record
1) To take a snapshot run the following command on the ADB command line:
adb shell screenrecord /sdcard/test.mp4
Note: Recording continues until Ctrl-C is hit or the time limit is reached
2) Afterwards, grab the screen record from /sdcard/test.mp4 to the current directory of your PC.
adb pull /sdcard/test.mp4
Related articles
How to set developer mode and usb debug
Comments
0 comments
Please sign in to leave a comment.