1.0.0 • Published 8 months ago

@kolabuk/hls v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
8 months ago

@kolabuk/hls

m3u8 file parser

Importing

import { HLS } from "@kolabuk/hls";

Usage

const hls = HLS.get(`
    #EXTM3U
    #EXT-X-VERSION:3
    #EXT-X-TARGETDURATION:21
    #EXT-X-ALLOW-CACHE:YES
    #EXT-X-PLAYLIST-TYPE:VOD
    #EXT-X-MEDIA-SEQUENCE:0...
`);

Response example

{
  "segments": [
    {
      "key": {
        "method": "AES-128",
        "uri": "https://example.com/key.pub"
      },
      "duration": 3,
      "uri": "seg0.ts"
    },
    {
      "key": { "method": "NONE" },
      "duration": 19.992,
      "uri": "seg1.ts"
    }
  ],
  "duration": 22.99
}
1.0.0

8 months ago