MediaElement - 如何获取 FPS(每秒帧数)?
有没有办法获得视频的FPS?
Is there an way to get FPS of video?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法获得视频的FPS?
Is there an way to get FPS of video?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您需要添加
RenderedFramesPerSecond
+DroppedFramesPerSecond
。这是使用 SilverlightMediaElement
可以获得的最接近准确数字。You need to add
RenderedFramesPerSecond
+DroppedFramesPerSecond
. This is the closest you can get to an accurate number with the SilverlightMediaElement
.这可能不是 100% 您所要求的,但您可以使用 RenderedFramesPerSecond MediaElement 的属性。如果计算机跟上,那么这应该与视频的 FPS 相匹配。
This may not be 100% what you are asking but you can see how fast the video is rendering using the RenderedFramesPerSecond property of MediaElement. If the computer is keeping up then this should match the FPS of the video.
不是来自 Silverlight - 您必须从编码过程中捕获 FPS。
Not from Silverlight - you have to capture the FPS from the encoding process.