blaze-player-litee
Version:
A customizable HTML5 video player with modular controls and themed styling.
35 lines (25 loc) • 786 B
Markdown
# Blaze HTML5 Video Player (Lite Edition)

# Features
- ✅ Play/Pause toggle
- ✅ Custom progress bar
- ✅ Time display (`currentTime / duration`)
- ✅ Volume control with dynamic icons
- ✅ Playback speed selector (0.5x, 1x, 2x)
- ✅ Fullscreen toggle
- ✅ keyboard Controls
- ✅ Modular: choose only the controls you want
- ✅ Simple API for controlling playback programmatically
⚠️ Don't Change the Logo
# Getting Started
### 1.Install via npm
```cmd
npm install blaze-player-vlite -g
```
### 2. HTML Structure
```html
<div id="player1" class="video-container">
<video src="video.mp4" width="640" height="360"></video>
</div>
<script src="blaze-player.js"></script>
```