@ngxsplayer/ngx-smart-player 0.0.1-next.0 → 0.0.1-next.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.
- package/README.md +26 -0
- package/fesm2022/ngxsplayer-ngx-smart-player.mjs +794 -360
- package/fesm2022/ngxsplayer-ngx-smart-player.mjs.map +1 -1
- package/index.d.ts +35 -14
- package/package.json +10 -7
package/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# @ngxsplayer/ngx-smart-player
|
|
2
|
+
|
|
3
|
+
Angular smart media player component built on top of `@ngxsp/core`.
|
|
4
|
+
|
|
5
|
+
## What It Provides
|
|
6
|
+
|
|
7
|
+
- standalone `<ngx-smart-player>` component
|
|
8
|
+
- custom media controls for audio and video
|
|
9
|
+
- engine, port, and plugin composition hooks
|
|
10
|
+
- responsive player UI suitable for local harnesses and app integration
|
|
11
|
+
|
|
12
|
+
## Local Commands
|
|
13
|
+
|
|
14
|
+
From this directory:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
make help
|
|
18
|
+
make build
|
|
19
|
+
make clean
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Workspace equivalent:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
pnpm -C ../.. ng build ngx-smart-player
|
|
26
|
+
```
|