ADB 안드로이드 화면 녹화
- adb 저장 위치 (윈도우)
C:\Users\user\AppData\Local\Android\sdk\platform-tools
- CMD 창 열고
& cd C:\Users\[사용자계정]\AppData\Local\Android\sdk\platform-tools
adb shell screenrecord
recording the display of devices running Android 4.4 (API level 19) and higher.
adb shell screenrecord [options] <filename>
adb shell screenrecord /sdcard/demo.mp4
(press Ctrl-C to stop recording)
download the file from the device
adb pull /sdcard/demo.mp4
adb shell screenrecord --size <WIDTHxHEIGHT>
Sets the video size: 1280x720. The default value is the device's native display resolution (if supported), 1280x720 if not. For best results, use a size supported by your device's Advanced Video Coding (AVC) encoder.
adb shell screenrecord --bit-rate <RATE>
Sets the video bit rate for the video, in megabits per second. The default value is 4Mbps. You can increase the bit rate to improve video quality, but doing so results in larger movie files. The following example sets the recording bit rate to 5Mbps: adb shell screenrecord --bit-rate 5000000 /sdcard/demo.mp4
adb shell screenrecord --time-limit <TIME>
Sets the maximum recording time, in seconds. The default and maximum value is 180 (3 minutes).
adb shell screenrecord --rotate
Rotates the output 90 degrees. This feature is experimental.
adb shell screenrecord --verbose
Displays log information on the command-line screen. If you do not set this option, the utility does not display any information while running.
'Android Story' 카테고리의 다른 글
[ Android ] inflate (0) | 2016.12.07 |
---|---|
[ Android ] 다음 맵에서 지원하지 않는 점선 라인.. 해결?? (0) | 2016.11.26 |
[ Android ] 마커 이미지에 인덱스 합성 (0) | 2016.11.26 |
[ Android ] 사이즈가 큰 이미지 뷰 (0) | 2016.11.25 |
[ Android ] GPS 구하기 (8) | 2016.11.23 |
[ Android ] Theme.AppCompat 사용시, statusbar가 UI와 겹칠때 (0) | 2016.11.17 |
[ Android ] 프로그래스 바 반시계 방향으로 돌기 ( ProgressBar counterclockwise ) (0) | 2016.11.04 |
[ Android ] WebView에서 나오는 html Jsoup으로 파싱하기 (0) | 2016.09.23 |