HTC Sensation Framebuffer (dev/graphics/fb0) 屏幕截图乱码图像
有人可以告诉我为什么 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
Could some one tell me why I get scrambled screenshots from the HTC Sensation?
Here's what I'm doing:
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我正在使用 HTC sense HD,下面的代码对我来说效果很好。
你使用的是RGB32格式,你必须使用BGR32。
I'm using HTC sensation HD, the code below works fine for me.
You are using RGB32 format, you have to use BGR32.