“数据生成模式”中的 NetStream.seek

发布于 2024-12-10 05:45:36 字数 431 浏览 0 评论 0原文

我使用 NetStream.appendBytes 方法创建了一个 flv 播放器,用于将数据输入缓冲区。 现在,我以这种方式执行搜索操作:

ns.seek (0);
ns.appendBytesAction (NetStreamAppendBytesAction.RESET_SEEK);
ns.appendBytes(seekPosBytes);

就像我在这里读到的

我执行了一个搜索(数字)(根据我的理解)刷新缓冲区)并开始合并新字节(与我开始播放的位置相关的字节)。 这意味着即使加载了整个视频,缓冲区也会被清空,并且必须重新加载所有内容。 是否可以使用 NetStream.appendBytes 方法来查找已加载到缓冲区中的数据?

I created a flv player using the method NetStream.appendBytes for entering data into the buffer.
For now, I perform the seek action in this way:

ns.seek (0);
ns.appendBytesAction (NetStreamAppendBytesAction.RESET_SEEK);
ns.appendBytes (seekPosBytes);

Like I've read here

I perform a seek(number) (which from what I've understood flushes the buffer) and beginning to incorporate the new bytes (those related to the position from which I start to play).
This means that even if the entire video is loaded, the buffer is emptied and everything has to be reloaded.
It is possible to seek using the data already loaded into the buffer using the method NetStream.appendBytes?

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

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

发布评论

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

评论(1

画中仙 2024-12-17 05:45:36

您是否尝试过设置netstream的inbufferseek 属性为true?

have you tried setting the netstream's inbufferseek property to true?

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