原文地址:http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2014/1012/1747.html

你要知道:

  • screenrecord是一个shell命令
  • 支持Android4.4(API level 19)以上
  • 支持视频格式: mp4

一些限制

  • 某些设备可能无法直接录制,原因是分辨率太高,如果遇到此类问题,请试着指定较低的分辨率
  • 不支持录制过程中屏幕旋转,如果录制过程中旋转,有可能画面被切断
  • 录制视频的时候声音不会被录下来

开始录制命令:

说明:录制手机屏幕,视频格式为mp4,存放到手机sd卡里,默认录制时间为180s

限制录制时间:

参数: –time-limit

说明:限制视频录制时间为10s,如果不限制,默认180s

指定视频分辨率大小:

参数: –size

说明:录制视频,分辨率为1280*720,如果不指定默认使用手机的分辨率,为获得最佳效果,请使用设备上的高级视频编码(AVC)支持的大小

指定视频的比特率

参数: –bit-rate

adb shell screenrecord --bit-rate 6000000 /sdcard/demo.mp4`</pre>
说明:指定视频的比特率为6Mbps,如果不指定,默认为4Mbps. 你可以增加比特率以提高视频质量或为了让文件更小而降低比特率

## <a name="t7"></a>[](https://github.com/bxiaopeng/wirelessqa/blob/master/Android/AndroidTest/Android%E8%A7%86%E9%A2%91%E5%BD%95%E5%88%B6%E5%91%BD%E4%BB%A4.md#%E5%9C%A8%E5%91%BD%E4%BB%A4%E8%A1%8C%E6%98%BE%E7%A4%BAlog)在命令行显示log

参数: --verbose
<pre>bixiaopeng@bixiaopeng wirelessqa$ adb shell screenrecord --time-limit 10 --verbose /sdcard/demo.mp4
Main display is 1080x1920 @60.00fps (orientation=0)
Configuring recorder for 1080x1920 video at 4.00Mbps
Content area is 1080x1920 at offset x=0 y=0
Time limit reached
Encoder stopping; recorded 96 frames in 10 seconds
Stopping encoder and muxer
Executing: /system/bin/am broadcast -a android.intent.action.MEDIA_SCANNER_SCAN_FILE -d file:///sdcard/demo.mp4
Broadcasting: Intent { act=android.intent.action.MEDIA_SCANNER_SCAN_FILE dat=file:///sdcard/demo.mp4 }
Broadcast completed: result=0</pre>
<div></div>

## <a name="t8"></a>[](https://github.com/bxiaopeng/wirelessqa/blob/master/Android/AndroidTest/Android%E8%A7%86%E9%A2%91%E5%BD%95%E5%88%B6%E5%91%BD%E4%BB%A4.md#%E6%97%8B%E8%BD%AC90%E5%BA%A6)旋转90度

参数: --rotate

说明:此功能为实验性的,好不好用不知道

## <a name="t9"></a>[](https://github.com/bxiaopeng/wirelessqa/blob/master/Android/AndroidTest/Android%E8%A7%86%E9%A2%91%E5%BD%95%E5%88%B6%E5%91%BD%E4%BB%A4.md#%E6%9F%A5%E7%9C%8B%E5%B8%AE%E5%8A%A9%E5%91%BD%E4%BB%A4)查看帮助命令

参数: --help
<pre>bixiaopeng@bixiaopeng ~$ adb shell screenrecord --help
Usage: screenrecord [options] &lt;filename&gt;
Records the device's display to a .mp4 file.
Options:
--size WIDTHxHEIGHT
    Set the video size, e.g. "1280x720".  Default is the device's main
    display resolution (if supported), 1280x720 if not.  For best results,
    use a size supported by the AVC encoder.
--bit-rate RATE
    Set the video bit rate, in megabits per second.  Default 4Mbps.
--time-limit TIME
    Set the maximum recording time, in seconds.  Default / maximum is 180.
--rotate
    Rotate the output 90 degrees.
--verbose
    Display interesting information on stdout.
--help
    Show this message.
Recording continues until Ctrl-C is hit or the time limit is reached.</pre>
<div></div>

## <a name="t10"></a>[](https://github.com/bxiaopeng/wirelessqa/blob/master/Android/AndroidTest/Android%E8%A7%86%E9%A2%91%E5%BD%95%E5%88%B6%E5%91%BD%E4%BB%A4.md#%E5%AF%BC%E5%87%BA%E8%A7%86%E9%A2%91)导出视频:

<pre>`adb pull /sdcard/demo.mp4

说明:导出视频到当前目录