Skip to content

Instantly share code, notes, and snippets.

@xiaocong
Created December 12, 2013 08:29
Show Gist options
  • Select an option

  • Save xiaocong/7924829 to your computer and use it in GitHub Desktop.

Select an option

Save xiaocong/7924829 to your computer and use it in GitHub Desktop.
take screenshot on android
#!/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