@hevcjs/shaka-plugin 0.2.0 → 0.2.1

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 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # @hevcjs/shaka-plugin
2
2
 
3
- > **Status: experimental skeleton.** Package layout, registration, and Shaka Transmuxer interface are in place. The actual HEVC H.264 conversion is a TODO that will plug into [`@hevcjs/core`](../core).
4
-
5
- HEVC/H.265 playback plugin for [Shaka Player](https://github.com/shaka-project/shaka-player). Registers a custom Shaka `Transmuxer` that ingests HEVC fMP4 segments and (eventually) emits H.264 fMP4 that any browser can play via MSE.
3
+ HEVC/H.265 playback plugin for [Shaka Player](https://github.com/shaka-project/shaka-player). Registers a custom Shaka `Transmuxer` that ingests HEVC fMP4 segments and emits H.264 fMP4 that any browser can play via MSE.
6
4
 
7
5
  Tracks issue [#101](https://github.com/privaloops/hevc.js/issues/101).
8
6
 
@@ -12,7 +10,7 @@ Tracks issue [#101](https://github.com/privaloops/hevc.js/issues/101).
12
10
  npm install @hevcjs/shaka-plugin shaka-player
13
11
  ```
14
12
 
15
- ## Usage (target API)
13
+ ## Usage
16
14
 
17
15
  ```js
18
16
  import shaka from 'shaka-player';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hevcjs/shaka-plugin",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Shaka Player plugin for HEVC/H.265 playback — registers a Shaka Transmuxer that decodes HEVC streams via @hevcjs/core",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",