问题描述: 使用adb shell screencap命令从视频中获取屏幕截图时,返回的图像是黑色的。
解决方法:
adb connect <设备IP地址>
其中,<设备IP地址>是手机的IP地址,可以在手机的设置中找到。adb shell
su
stop surfaceflinger
start surfaceflinger
adb shell screencap -p /sdcard/screenshot.png
该命令将在手机的sdcard目录下保存一个名为screenshot.png的屏幕截图。adb pull /sdcard/screenshot.png <保存路径>
其中,<保存路径>是你想要保存截图的本地路径。这些步骤可以尝试解决adb shell screencap从视频中返回黑色图像的问题。