-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
忽略了一种切片suffix情况,望修复 #21
Comments
有例子吗? |
#EXTM3U |
另外,我就我自己的情况提个建议,我看你seek部分的代码,其实是客户端加入一个标记,服务端在request时发现标记才进行任务的seek 这对于边下边播比较友好,但是具体到播放器时ijkplayer播放视频会有部分帧回弹的问题,也就是客户端发生seek时,可能仍然会请求seek前的帧,然后再请求seek后的帧,因为你代码中客户端设置的标记可能会跳到seek前去,这样播放就卡了。 这个问题在m3u8中严重,流文件能正常seek,打开accurate seek能够减少一定的发生概率,但是终归这种hls媒体没办法很快定位到新的帧上去。 我的个人建议是:m3u8 seek后请求新切片,一律允许seek操作
|
你好,在查阅您的代码后,发现M3U8Seg类中对切片进行了suffix判断,其中忽略了一些重定向的链接并没有后缀,因此需要在最后添加默认.ts
The text was updated successfully, but these errors were encountered: