dasha 4.0.0-alpha.2 → 4.0.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/dasha.cjs +267 -240
- package/dist/dasha.d.cts +200 -90
- package/dist/dasha.d.mts +289 -0
- package/dist/{dasha.js → dasha.mjs} +240 -224
- package/package.json +17 -20
- package/dist/dasha.d.ts +0 -179
package/README.md
CHANGED
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
Library for parsing MPEG-DASH (.mpd) and HLS (.m3u8) manifests. Made with the purpose of obtaining a simplified representation convenient for further downloading of segments.
|
|
8
8
|
|
|
9
9
|
> [!WARNING]
|
|
10
|
-
> This README is for the alpha version. Info about latest stable version is available on [NPM](https://www.npmjs.com/package/dasha/v/3.1.5) or [another GitHub branch](https://github.com/
|
|
10
|
+
> This README is for the alpha version. Info about latest stable version is available on [NPM](https://www.npmjs.com/package/dasha/v/3.1.5) or [another GitHub branch](https://github.com/azot-labs/dasha/tree/v3).
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
## Install
|
|
14
14
|
|
|
15
15
|
```shell
|
|
16
|
-
npm i dasha@
|
|
16
|
+
npm i dasha@alpha
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
## Usage
|