Skip to content
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

SeqNo bug, increment needed only when chunk removed #72

Closed
hori-ryota opened this issue Sep 1, 2016 · 1 comment
Closed

SeqNo bug, increment needed only when chunk removed #72

hori-ryota opened this issue Sep 1, 2016 · 1 comment

Comments

@hori-ryota
Copy link
Contributor

m3u8/writer.go at master · grafov/m3u8

Here is necessary code.

It cause following bug,

  • first
#EXTM3U
#EXT-X-VERSION:3
#EXT-X-MEDIA-SEQUENCE:0
#EXT-X-TARGETDURATION:12
#EXTINF:10.000,
0ts
  • next
#EXTM3U
#EXT-X-VERSION:3
#EXT-X-MEDIA-SEQUENCE:1
#EXT-X-TARGETDURATION:12
#EXTINF:10.000,
0ts
#EXTINF:10.000,
1ts
  • correct
#EXTM3U
#EXT-X-VERSION:3
#EXT-X-MEDIA-SEQUENCE:0
#EXT-X-TARGETDURATION:12
#EXTINF:10.000,
0ts
#EXTINF:10.000,
1ts
@grafov
Copy link
Owner

grafov commented May 2, 2017

Hmm... did we fix it? :|

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants