標籤:sd卡 save ping fps 指定 支援 set adc std
Android命令screencap 查看協助命令
[email protected] ~$ adb shell screencap -vscreencap: invalid option -- vusage: screencap [-hp] [-d display-id] [FILENAME] -h: this message -p: save the file as a png. -d: specify the display id to capture, default 0.If FILENAME ends with .png it will be saved as a png.If FILENAME is not given, the results will be printed to stdout.
注意:
如果檔案名稱以.png結尾時,它將儲存為png檔案
如果檔案名稱沒有給出,則結果被會被輸出到stdout儲存到SD卡裡再匯出
$ adb shell screencap -p /sdcard/screen.png$ adb pull /sdcard/screen.png$ adb shell rm /sdcard/screen.png
這種方法比較麻煩,需要3步:1. 儲存到sdcard 2.將圖片匯出 3.刪除sdcard中的圖片直接儲存到電腦
$ adb shell screencap -p | sed ‘s/\r$//‘ > screen.png
執行adb shell 將\n轉換\r\n, 因此需要用sed刪除多餘的\r如果直接當命令用還可以用 alias 包裝裝起來:
$ alias and-screencap="adb shell screencap -p | sed ‘s/\r$//‘"$ and-screencap > screen.png
以後就可以方便的用and-screencap > 直接將儲存到電腦上了
轉:http://blog.csdn.net/wirelessqa/article/details/22725581
Android視頻錄製命令screenrecord你要知道:
- screenrecord是一個shell命令
- 支援Android4.4(API level 19)以上
- 可使用視訊格式: mp4
一些限制
- 某些裝置可能無法直接錄製,原因是解析度太高,如果遇到此類問題,請試著指定較低的解析度
- 不支援錄製過程中旋轉螢幕,如果錄製過程中旋轉,有可能畫面被切斷
- 錄製視頻的時候聲音不會被錄下來
開始錄製命令:
adb shell screenrecord /sdcard/demo.mp4
說明:錄製手機螢幕,視頻格式為mp4,存放到手機sd卡裡,預設錄製時間為180s限制錄製時間:
參數: --time-limit
adb shell screenrecord --time-limit 10 /sdcard/demo.mp4
說明:限制視頻錄製時間為10s,如果不限制,預設180s指定視頻解析度大小:
參數: --size
adb shell screenrecord --size 1280*720 /sdcard/demo.mp4
說明:錄製視頻,解析度為1280*720,如果不指定預設使用手機的解析度,為獲得最佳效果,請使用裝置上的進階視頻編碼(AVC)支援的大小指定視頻的位元速率
參數: --bit-rate
adb shell screenrecord --bit-rate 6000000 /sdcard/demo.mp4
說明:指定視頻的位元速率為6Mbps,如果不指定,預設為4Mbps. 你可以增加位元速率以提高視頻品質或為了讓檔案更小而降低位元速率在命令列顯示log
參數: --verbose
[email protected] wirelessqa$ adb shell screenrecord --time-limit 10 --verbose /sdcard/demo.mp4Main display is 1080x1920 @60.00fps (orientation=0)Configuring recorder for 1080x1920 video at 4.00MbpsContent area is 1080x1920 at offset x=0 y=0Time limit reachedEncoder stopping; recorded 96 frames in 10 secondsStopping encoder and muxerExecuting: /system/bin/am broadcast -a android.intent.action.MEDIA_SCANNER_SCAN_FILE -d file:///sdcard/demo.mp4Broadcasting: Intent { act=android.intent.action.MEDIA_SCANNER_SCAN_FILE dat=file:///sdcard/demo.mp4 }Broadcast completed: result=0
旋轉90度
參數: --rotate
說明:此功能為實驗性的,好不好用不知道查看協助命令
參數: --help
[email protected] ~$ adb shell screenrecord --helpUsage: 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.
匯出視頻:
adb pull /sdcard/demo.mp4
說明:匯出視頻到目前的目錄
Android命令screencap與視頻錄製命令screenrecord