“数据生成模式”中的 NetStream.seek
我使用 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);
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过设置netstream的inbufferseek 属性为true?
have you tried setting the netstream's inbufferseek property to true?