android设置adb自带screenrecord录屏命令
android设置system/bin目录类似linux,该目录下有许多实用命令,类似
adb,sh,top,app_process,chmod,chown,dmesg,reboot,screenrecord等等。
录屏作用:qa测试过程中有的bug需要还原现场,此时用手机拍摄有诸多不便,此时可以利用录屏命令自动完成录屏,然后上传bug视频。
其中screenrecord命令录制视频到内部存储:
录制命令:
adbshellscreenrecord--size1920x480/storage/sdcard0/demorecord.mp4
时间设置:
adbshellscreenrecord--time-limit100/storage/sdcard0/demorecord.mp4
停止录制:
Ctrl+C会停止命令,自动停止录制。
参数设置:
$adbshellscreenrecord--help
Usage:screenrecord[options]
Recordsthedevice'sdisplaytoa.mp4file.
Options:
–sizeWIDTHxHEIGHT设置屏幕宽高,一般根据自己手机设置,最大支持1920x480。
Setthevideosize,e.g.“1280x720”.Defaultisthedevice'smain
displayresolution(ifsupported),1280x720ifnot.Forbestresults,
useasizesupportedbytheAVCencoder.
–bit-rateRATE设置bit率
Setthevideobitrate,inmegabitspersecond.Default4Mbps.
–time-limitTIME设置录制时间,默认最大时长180秒
Setthemaximumrecordingtime,inseconds.Default/maximumis180.
–rotate旋转输出
Rotatetheoutput90degrees.
–verbose
Displayinterestinginformationonstdout.
–help
Showthismessage.
RecordingcontinuesuntilCtrl-Cishitorthetimelimitisreached.
总结
以上所述是小编给大家介绍的android设置adb自带screenrecord录屏命令,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对毛票票网站的支持!