获取当前播放视频的帧速率

发布于 2024-12-07 00:12:47 字数 104 浏览 0 评论 0原文

我想知道 - 有没有办法获取 Android videoView 当前正在播放的帧速率。我查看了 VideoView 类的文档,但没有结果。还有其他方法可以做到这一点吗?

谢谢。

I was wondering - is there a way to get the frame rate at which an Android videoView is currently playing. I looked into the documentation of the VideoView class but it was to no avail. Is there some other way to do this?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最单纯的乌龟 2024-12-14 00:12:47

是的,你可以。

VideoView 扩展了 View,因此您可以创建自己的 YourVideoView 类来扩展 VideoView,实现 onDraw 方法,在那里调用 super.onDraw,并在那里执行 FPS 计算。

所以你可以自己数一下VideoView在一秒内调用了多少次onDraw。在您需要的任何地方显示它(在屏幕/logcat/...)。

计算帧速率是另一回事,您可以在此处查找简单的示例。

Yes you can.

VideoView extends View, so you'd make your own YourVideoView class which extends VideoView, implement onDraw method, call super.onDraw there, and also performing your FPS computation there.

So you can count yourself how many times in secound onDraw is called for VideoView. Display it wherever you need (on screen / logcat / ...).

Counting framerate is another story, you can look for simple example here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文