🚀 DAY 5 OF LAUNCH WEEK:Introducing Webhook Events for Alert Changes.Learn more
Socket
Book a DemoInstallSign in
Socket

react-smart-video-player

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-smart-video-player

A customizable React video player with no dependencies

latest
Source
npmnpm
Version
1.0.3
Version published
Maintainers
1
Created
Source

🎥 @react-smart-video-player

npm version License: MIT Stars Issues Last Commit

A fully-featured, YouTube-like video player built completely from scratch using React and TypeScript — no third-party video libraries involved.

Perfect for developers looking for a clean, minimal, extensible, and dependency-free media player.

✅ Features

  • 🎬 Custom play/pause/seek controls (with buffer indicator)
  • 🔊 Volume control with mute & smooth slider behavior
  • ⏩ Modern seek bar with time + hover support
  • 📺 Fullscreen toggle
  • 🌐 Subtitle (.vtt) support
  • ⚙️ Playback speed control (0.25x – 2x)
  • 🌓 Light & dark themes
  • 📱 Fully responsive layout
  • 🎮 YouTube-style keyboard shortcuts
  • ♿ Accessible (ARIA & screen reader friendly)
  • 🎨 Themeable via CSS variables
  • 🧱 No 3rd-party libraries – pure React

✨ What’s New

🧠 Smarter Control Visibility

  • Controls remain visible while mouse is anywhere inside the player
  • Hide only when mouse leaves — like YouTube
  • No flickering or premature hide during interaction

🔊 Volume Panel (Improved UX)

  • Click to open — no accidental hover changes
  • Auto hides when mouse leaves the panel
  • Smooth sliding and clear mute indicator

🎞️ Seek Bar Preview (Optional)

  • Integrated <canvas> + <video> thumbnail preview
  • Works with sprite images or auto-generated previews
  • Fast and optimized

📷 Instant Thumbnail Preview (Optional)

  • Hover previews powered by <video> + <canvas>.
  • Works with both sprite frames and per-second captures.
  • Fully optimized for performance — previews load instantly.

🚀 Live Demo

Try it online (no setup required):
👉 StackBlitz Demo

🔗 Links

🔧 GitHub: https://github.com/arun59ay/react-video-player

📦 NPM: https://www.npmjs.com/package/react-smart-video-player

Live Demo: https://stackblitz.com/github/arun59ay/react-video-player

📦 Installation

npm install react-video-player

You also need to import the default styles manually:

import 'react-video-player/dist/index.css';


import React from 'react';
import { VideoPlayer } from 'react-video-player';
import 'react-video-player/dist/index.css';

export default function App() {
  return (
    <VideoPlayer
      src="/videos/sample.mp4"
      poster="/images/thumb.jpg"
      title="Demo Player"
      theme="dark"
    />
  );
}


import React from 'react';
import { VideoPlayer } from 'react-video-player';
import 'react-video-player/dist/index.css';

const App = () => (
  <VideoPlayer
    src="/videos/sample.mp4"
    poster="/images/thumb.jpg"
    captions="/captions/subtitles.vtt"
    title="Advanced Demo Player"
    theme="light"
    autoplay={false}
    loop={false}
    muted={false}
    controls={true}
    width="800px"
    height="450px"
    className="my-custom-player"
    style={{ borderRadius: '12px' }}
    onPlay={() => console.log('Video started')}
    onPause={() => console.log('Video paused')}
    onTimeUpdate={(time) => console.log('Time:', time)}
    onVolumeChange={(vol) => console.log('Volume:', vol)}
    onSeek={(time) => console.log('Seeked to:', time)}
    onEnded={() => console.log('Ended')}
    onError={(err) => console.error('Error:', err)}
  />
);


🎮 Keyboard Shortcuts

| Action            | Keys      |
| ----------------- | --------- |
| Play / Pause      | Space / K |
| Seek -10s         | ← / J     |
| Seek +10s         | → / L     |
| Volume Up         | ↑         |
| Volume Down       | ↓         |
| Mute / Unmute     | M         |
| Fullscreen Toggle | F         |
| Speed Down        | Shift + , |
| Speed Up          | Shift + . |
| Go to Start       | Home      |
| Go to End         | End       |




📋 Props API

| Prop        | Type                  | Default     | Description                         |
| ----------- | --------------------- | ----------- | ----------------------------------- |
| `src`       | `string`              | — *(req)*   | Video source URL                    |
| `poster`    | `string`              | `undefined` | Poster image                        |
| `captions`  | `string`              | `undefined` | WebVTT subtitles file               |
| `title`     | `string`              | `undefined` | Accessible title for screen readers |
| `theme`     | `'light' \| 'dark'`   | `'dark'`    | UI Theme                            |
| `autoplay`  | `boolean`             | `false`     | Autoplay on load                    |
| `loop`      | `boolean`             | `false`     | Loop the video                      |
| `muted`     | `boolean`             | `false`     | Mute by default                     |
| `controls`  | `boolean`             | `true`      | Show/hide player controls           |
| `width`     | `string` or `number`  | `'100%'`    | Custom player width                 |
| `height`    | `string` or `number`  | `'auto'`    | Custom player height                |
| `className` | `string`              | `''`        | Custom class for the wrapper        |
| `style`     | `React.CSSProperties` | `{}`        | Inline styles                       |




🧠 Event Callbacks

| Callback         | Type                       | Description                    |
| ---------------- | -------------------------- | ------------------------------ |
| `onPlay`         | `() => void`               | Triggered when playback starts |
| `onPause`        | `() => void`               | Triggered when paused          |
| `onTimeUpdate`   | `(time: number) => void`   | On time change during playback |
| `onVolumeChange` | `(volume: number) => void` | On volume update               |
| `onSeek`         | `(time: number) => void`   | When seeking is done           |
| `onEnded`        | `() => void`               | When video ends                |
| `onError`        | `(error: string) => void`  | If video load/playback fails   |


## 🎨 Styling (CSS Variables)

Override the look via your own styles:

```css
.rvp-video-player {
  --rvp-primary-color: #ff0000;
  --rvp-background-color: rgba(0, 0, 0, 0.85);
  --rvp-text-color: #fff;
  --rvp-border-radius: 10px;
}

🧩 Project Structure

react-video-player/ ├── src/ │ ├── components/ # All modular player components │ ├── hooks/ # Custom video hook │ ├── types/ # Type definitions │ ├── styles/ # CSS styles │ └── index.ts # Entry point ├── demo/ # Vite + manual CSS demo project ├── dist/ # Compiled output ├── package.json ├── tsconfig.json └── README.md

🎨 Custom Styling

You can override styling using CSS variables:

.rvp-video-player { --rvp-primary-color: #ff0000; --rvp-background-color: rgba(0, 0, 0, 0.8); --rvp-text-color: white; --rvp-border-radius: 8px; }

❌ Not Using

This package does NOT depend on:

  • react-player
  • video.js
  • hls.js
  • External UI frameworks
  • Redux or global state

It’s written with vanilla React, DOM APIs, and TypeScript — fully maintainable and modular.

🤝 Contributing

We welcome feature suggestions, bug reports, and contributions!

  • 📁 Clone the repo
  • 💻 Create a feature branch
  • ✅ Submit a PR

📄 License

MIT License
© 2025 – Arun

Made with ❤️ and TypeScript by Arun YT

🌟 Feedback Welcome

If you like this project, please consider giving it a star ⭐ and leaving feedback through GitHub Issues.
Your support helps keep this project actively maintained and improved.

📢 Discoverability Boost

To help more developers find and benefit from this project, it’s being submitted to:

Keywords

react

FAQs

Package last updated on 21 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts