Created
December 12, 2013 08:29
-
-
Save xiaocong/7924829 to your computer and use it in GitHub Desktop.
take screenshot on android
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| adb pull /dev/graphics/fb0 fb0 | |
| dd bs=1920 count=800 if=fb0 of=fb0b | |
| ffmpeg -vframes 1 -vcodec rawvideo -f rawvideo -pix_fmt rgb32 -s 480x800 -i fb0b -f image2 -vcodec png fb0.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment