dasha 3.1.5 → 3.1.6

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.
Files changed (2) hide show
  1. package/README.md +2 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -9,7 +9,7 @@ Library for parsing MPEG-DASH (.mpd) and HLS (.m3u8) manifests. Made with the pu
9
9
  ## Install
10
10
 
11
11
  ```shell
12
- npm i dasha
12
+ npm i dasha@3.1.5
13
13
  ```
14
14
 
15
15
  ## Quick start
@@ -18,8 +18,7 @@ npm i dasha
18
18
  import fs from 'node:fs/promises';
19
19
  import { parse } from 'dasha';
20
20
 
21
- const url =
22
- 'https://dash.akamaized.net/dash264/TestCases/1a/sony/SNE_DASH_SD_CASE1A_REVISED.mpd';
21
+ const url = 'https://dash.akamaized.net/dash264/TestCases/1a/sony/SNE_DASH_SD_CASE1A_REVISED.mpd';
23
22
  const body = await fetch(url).then((res) => res.text());
24
23
  const manifest = await parse(body, url);
25
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dasha",
3
- "version": "3.1.5",
3
+ "version": "3.1.6",
4
4
  "description": "Streaming manifest parser",
5
5
  "files": [
6
6
  "dasha.js",