Android擴充系列(9)--Android視訊錄製screenrecord命令

謙虛的天下發表於2014-04-24

在Android4.4 Kitkat上整合了一個比較好用的視訊錄製功能。
參考:http://forums.androidcentral.com/android-4-4-kitkat/329674-how-use-screen-recording-android-4-4-kitkat.html

1、名稱
screenrecord

2、使用說明

$ adb shell screenrecord --help
Usage: screenrecord [options] <filename>

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.

3、舉例
(1). 基本使用

// 錄製預設解析度,預設4Mbps,預設180s的視訊,儲存到sdcard上名為FILENAME.mp4
$adb shell screenrecord /sdcard/FILENAME.mp4

(2). 指定解析度(引數:--size)

// 解析度為112x112,建議不要指定解析度,使用預設解析度效果最佳
$adb shell screenrecord --size 112x112 /sdcard/FILENAME.mp4

注意,解析度不是完全可以隨意定製的,比如在我手機上錄製100x100的會提示錯誤:

// 100x100不支援,建議設為112x112
$adb shell screenrecord --size 100x100 /sdcard/FILENAME.mp4
The max width/height supported by codec is 1920x1088
100x100 is not supported by codec, suggest to set it as 112x112

(3). 指定位元率(引數:--bit-rate)

// 設定位元率為8Mbps,位元率越大,檔案越大,畫面越清晰
$adb shell screenrecord --bit-rate 8000000 /sdcard/FILENAME.mp4

(4). 旋轉(引數:--rotate)

// 旋轉90度
$adb shell screenrecord --rotate /sdcard/FILENAME.mp4

4、小結
(1). 生成的MP4檔案很小,幾百K到幾百M,很方便。(本人工作中測試錄製的視訊動輒幾十M或者幾百M)。
(2). 不支援聲音,如有需要,另外獨立錄製。

相關文章