美文网首页
adb shell 截屏与录屏

adb shell 截屏与录屏

作者: 一林花色 | 来源:发表于2017-02-13 15:44 被阅读320次

截屏

adb shell screencap -p /sdcard/screenhot.png

截屏并保存在指定目录

adb shell screencap -p | perl -pe 's/\x0D\x0A/\x0A/g' >  /Users/Administrator/Desktop/screenhot.png

录屏

默认录制180s 3分钟的视频

adb shell screenrecord /sdcard/video.mp4

视频质量

adb shell screenrecord --size 1280*720 /sdcard/video.mp4

adb shell screenrecord --time-limit 200 /sdcard/video.mp4

adb shell screenrecord --bit-rate 500000 /sdcard/video/mp4    //500kbps

相关文章

网友评论

      本文标题:adb shell 截屏与录屏

      本文链接:https://www.haomeiwen.com/subject/tfqtwttx.html