如何从流 .mp4 中获取 netstream bytesLoaded 和 bytesTotal?
我有一个 Flex 3 应用程序,它使用 netstream 和视频对象来流式传输 .mp4 电影。我想使用 netstream 的 bytesLoaded 和 bytesTotal 属性来显示缓冲信息。如果可能的话,我还想获得有关丢失帧数的任何信息。
当我在 .flv 上测试时,我能够毫无问题地获取信息,但它似乎不适用于 .mp4。
是否可以以 .mp4 格式获取此信息?我是否缺少一些配置来使 .mp4 与 .flv 的工作方式相同?
谢谢!
编辑:我还应该提到流媒体是通过 RTMP 完成的
I have a flex 3 app that uses netstream and a video object to stream .mp4 movies. I want to use the bytesLoaded and bytesTotal properties of the netstream to display the buffering information. I would also like to get any information about the number of frames that are dropped if possible.
When I've tested on .flv I'm able to get the information without a problem, but it doesn't seem to work on .mp4.
Is it possible to get this information streaming .mp4? Is there some configuration that I'm missing to make things work the same for .mp4 as .flv?
Thanks!
edit: I should also mention that the streaming is done over RTMP
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现使用 RTMP 时无法获取字节信息,因为数据没有下载,它纯粹是流式传输。
所以我改用缓冲信息
I figured out that when using RTMP you can't get the byte information because the data isn't downloaded, it's purely streaming.
So instead I'm using the buffering info instead