Skip to content
This repository was archived by the owner on Dec 8, 2024. It is now read-only.
This repository was archived by the owner on Dec 8, 2024. It is now read-only.

Issues related to iframe playlist and bytes ranges #46

@AyliD

Description

@AyliD

In Reader.Go:
in the following line:
case !state.tagIframeStreamInf && strings.HasPrefix(line, "#EXT-X-I-FRAME-STREAM-INF:"):
you use only the first iframe manifest found and not all.

also, the playlist iframe segments has no offset and linit due to lin "} else if state.tagRange { " in:

case !strings.HasPrefix(line, "#"):
if state.tagInf {
p.Append(line, state.duration, title)
state.tagInf = false
} else if state.tagRange {

because i have state.tagInf and state.tagRange so "else if " isnt good enough and should be:

if state.tagInf {
p.Append(line, state.duration, title)
state.tagInf = false
}
if state.tagRange {

Metadata

Metadata

Assignees

Labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions