ecplayer 1.0.0
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 +43 -0
- package/dist/ecplayer.es.js +2607 -0
- package/dist/ecplayer.umd.js +266 -0
- package/dist/index.d.ts +124 -0
- package/dist/style.css +1 -0
- package/media/nanoaudioplayer.png +0 -0
- package/media/videoplayer.png +0 -0
- package/media/visualizeplayer.png +0 -0
- package/media/waveaudioplayer.png +0 -0
- package/package.json +46 -0
package/README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# ecplayer
|
|
2
|
+
|
|
3
|
+
A premium, highly customizable, and beautiful music player library for React.
|
|
4
|
+
|
|
5
|
+
[](https://player.evelocore.com/)
|
|
6
|
+
|
|
7
|
+
## 📖 Documentation
|
|
8
|
+
|
|
9
|
+
For full documentation, live demos, and interactive examples, visit:
|
|
10
|
+
**[player.evelocore.com](https://player.evelocore.com/)**
|
|
11
|
+
|
|
12
|
+
## 🚀 Installation
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npm install ecplayer
|
|
16
|
+
# or
|
|
17
|
+
yarn add ecplayer
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## 🎨 Visual Players
|
|
21
|
+
|
|
22
|
+
### VisualizePlayer
|
|
23
|
+

|
|
24
|
+
|
|
25
|
+
### WaveAudioPlayer
|
|
26
|
+

|
|
27
|
+
|
|
28
|
+
### NanoAudioPlayer
|
|
29
|
+

|
|
30
|
+
|
|
31
|
+
### VideoPlayer
|
|
32
|
+

|
|
33
|
+
|
|
34
|
+
## 🛠️ Features
|
|
35
|
+
|
|
36
|
+
- **Beautiful Visualizers**: Real-time audio visualization using Web Audio API.
|
|
37
|
+
- **Multiple Player Types**: Choose from `VisualizePlayer`, `WaveAudioPlayer`, and `NanoAudioPlayer`.
|
|
38
|
+
- **Built-in Themes**: Multiple premium themes (Rainbow, Ocean, Sunset, etc.).
|
|
39
|
+
- **Equalizer**: 3-band equalizer (Bass, Mid, Treble).
|
|
40
|
+
- **Speed Control**: Adjust playback speed from 0.5x to 2.0x.
|
|
41
|
+
- **Video Support**: Includes a `VideoPlayer` with visualization capabilities.
|
|
42
|
+
- **Responsive**: Works perfectly on all screen sizes.
|
|
43
|
+
- **License**: MIT
|