@mux/mux-video 0.8.3 → 0.8.5-canary.0-a56cc06

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/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.8.4](https://github.com/muxinc/elements/compare/@mux/mux-video@0.8.3...@mux/mux-video@0.8.4) (2022-08-03)
7
+
8
+ **Note:** Version bump only for package @mux/mux-video
9
+
6
10
  ## [0.8.3](https://github.com/muxinc/elements/compare/@mux/mux-video@0.8.2...@mux/mux-video@0.8.3) (2022-08-02)
7
11
 
8
12
  ### Bug Fixes
package/README.md CHANGED
@@ -89,7 +89,7 @@ Attributes:
89
89
  - `metadata-video-title`: This is an arbitrary title for your video that will be passed in as metadata into Mux Data. Adding a title will give you useful context in your Mux Data dashboard. (optional, but encouraged)
90
90
  - `metadata-viewer-user-id`: If you have a logged-in user this should be an anonymized ID value that maps back to the user in your database. Take care to not expose personal identifiable information like names, usernames or email addresses. (optional, but encouraged)
91
91
  - `metadata-video-id`: This is an arbitrary ID that should map back to a record of this video in your database.
92
- - `stream-type`: Enum value: one of `"on-demand"`, `"live"` (HLS live stream), `"ll-live"` (low latency live). Not strictly required, but preffered so that `<mux-video />` can make optimizations based on the type of stream.
92
+ - `stream-type`: Enum value: one of `"on-demand"`, `"live"` (HLS live stream), `"ll-live"` (low latency live). Not strictly required, but preferred so that `<mux-video />` can make optimizations based on the type of stream.
93
93
  - `start-time: number (seconds)`: Set this to start playback of your media at some time other than 0.
94
94
 
95
95
  This is the bare bones of metadata that you should provide to the `<mux-video>` element.
@@ -148,7 +148,7 @@ Take a look at the [metadata guide](https://docs.mux.com/guides/data/make-your-d
148
148
 
149
149
  ### Advanced: prefer-mse
150
150
 
151
- Pass the `prefer-mse` attribute to prioritze the in-code [Media Source Extensions](https://developer.mozilla.org/en-US/docs/Web/API/Media_Source_Extensions_API) based engine (currently [hls.js](https://github.com/video-dev/hls.js/)) when MSE are supported by the browser. (Without `prefer-mse`, the default behaviour for `<mux-video>` is to try the native playback via the underlying `<video/>` tag )
151
+ Pass the `prefer-mse` attribute to prioritze the in-code [Media Source Extensions](https://developer.mozilla.org/en-US/docs/Web/API/Media_Source_Extensions_API) based engine (currently [hls.js](https://github.com/video-dev/hls.js/)) when MSE are supported by the browser. (Without `prefer-mse`, the default behaviour for `<mux-video>` is to try the native playback via the underlying `<video/>` tag )
152
152
 
153
153
  ```html
154
154
  <mux-video
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mux/mux-video",
3
- "version": "0.8.3",
3
+ "version": "0.8.5-canary.0-a56cc06",
4
4
  "description": "A custom mux video element for the browser that Just Works™",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "module": "./dist/index.mjs",
@@ -48,7 +48,7 @@
48
48
  "publish-release": "../../scripts/publish.sh"
49
49
  },
50
50
  "dependencies": {
51
- "@mux/playback-core": "0.9.0"
51
+ "@mux/playback-core": "0.9.1-canary.10-a56cc06"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@mux/open-process": "0.1.0",
@@ -64,6 +64,5 @@
64
64
  "replace": "^1.2.1",
65
65
  "shx": "^0.3.4",
66
66
  "typescript": "^4.5.2"
67
- },
68
- "gitHead": "4ef4afea4e82bf3558225d105dbab0cbff6aa6ce"
67
+ }
69
68
  }
package/LICENSE DELETED
@@ -1,9 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2021 Mux, Inc.
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
-
7
- The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.
8
-
9
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.