streaming

Media streaming and broadcast systems in Go
Log | Files | Refs | README | LICENSE

commit 35dba76d750bb75f1becd09a646fa639926888b9
parent 0c9569d7e0d27bdcfe1faa48fa30cd2b68489b6a
Author: Oliver Lowe <o@olowe.co>
Date:   Fri,  5 Jul 2024 11:39:58 +1000

m3u8: correct func, oops

Diffstat:
Mm3u8/cmd/hlsproxy/hlsproxy.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/m3u8/cmd/hlsproxy/hlsproxy.go b/m3u8/cmd/hlsproxy/hlsproxy.go @@ -69,7 +69,7 @@ func main() { if resp.StatusCode != http.StatusOK { log.Fatal("get playlist: remote status:", resp.Status) } - source, err := m3u8.ParsePlaylist(resp.Body) + source, err := m3u8.Decode(resp.Body) if err != nil { log.Fatal("parse playlist:", err) }