HTC Sensation帧缓冲(dev / graphics / fb0)截图加扰图像

时间:2012-02-10 21:04:30

标签: android htc-android

有人可以告诉我为什么我会从HTC Sensation中获取混乱的屏幕截图吗?

这就是我正在做的事情:

adb pull /dev/graphics/fb0 fb0
ffmpeg -vframes 1 -vcodec rawvideo -f rawvideo -pix_fmt rgb32 -s 540x960 -i fb0 -f image2 -vcodec png image.png

1 个答案:

答案 0 :(得分:2)

我正在使用HTC sensation HD,下面的代码对我来说很好。

ffmpeg -vframes 1 -vcodec rawvideo -f rawvideo -pix_fmt bgr32 -s 480x800  -i fb0 -f image2 -vcodec png image2.png

您使用的是RGB32格式,您必须使用BGR32。