npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@madraka/nextjs-videoplayer

v1.0.7

Published

Modern, customizable video player for Next.js with HLS/DASH support, mobile optimization, and advanced features

Downloads

16

Readme

🎬 NextJS Video Player

NPM Version License TypeScript Demo

Modern, customizable video player for Next.js applications with adaptive streaming, mobile optimization, and advanced features.

✨ Features

  • 🎯 Next.js 15+ App Router Ready
  • 📱 Mobile-First Design with VK Player-inspired controls
  • 🎬 Adaptive Streaming (HLS.js & Dash.js support)
  • 🖼️ Thumbnail Previews with sprite sheet support
  • 🎨 Highly Customizable with TypeScript configuration
  • 👆 Touch Gestures optimized for mobile
  • Performance Optimized with lazy loading
  • 🎪 Single Official Preset (default) with per-instance overrides
  • 📊 Built-in Analytics tracking
  • Accessibility compliant

🚀 Quick Start

Installation

# Using npm
npm install @madraka/nextjs-videoplayer

# Using pnpm  
pnpm add @madraka/nextjs-videoplayer

# Using yarn
yarn add @madraka/nextjs-videoplayer

# Install directly from GitHub
npm install github:Madraka/nextjs-videoplayer
pnpm add github:Madraka/nextjs-videoplayer
yarn add github:Madraka/nextjs-videoplayer

Basic Usage

'use client';

import { ConfigurableVideoPlayer } from '@madraka/nextjs-videoplayer';

export default function MyVideoPage() {
  return (
    <div className="max-w-4xl mx-auto p-4">
      <ConfigurableVideoPlayer
        src="https://example.com/video.m3u8"
        poster="https://example.com/poster.jpg"
        aspectRatio="16/9"
      />
    </div>
  );
}

With Configuration

'use client';

import { 
  ConfigurableVideoPlayer,
  PlayerConfigProvider,
  PlayerPresets 
} from '@madraka/nextjs-videoplayer';

export default function AdvancedVideoPage() {
  return (
    <PlayerConfigProvider config={PlayerPresets.default}>
      <ConfigurableVideoPlayer
        src="https://example.com/video.m3u8"
        thumbnailUrl="https://example.com/thumbnails/"
        aspectRatio="16/9"
        autoPlay={false}
        muted={false}
        onPlay={() => console.log('Video started playing')}
        onPause={() => console.log('Video paused')}
      />
    </PlayerConfigProvider>
  );
}

📚 Documentation

Props

| Prop | Type | Default | Description | |------|------|---------|-------------| | src | string | - | Video source URL (HLS, DASH, MP4) | | poster | string | - | Poster image URL | | thumbnailUrl | string | - | Base URL for thumbnail previews | | aspectRatio | 'auto' \| '16/9' \| '4/3' \| '1/1' \| '9/16' | 'auto' | Video aspect ratio | | autoPlay | boolean | false | Auto-play video | | muted | boolean | false | Start muted | | loop | boolean | false | Loop video | | playsInline | boolean | true | Plays inline on mobile |

Event Callbacks

<ConfigurableVideoPlayer
  src="video.m3u8"
  onReady={() => console.log('Player ready')}
  onPlay={() => console.log('Playing')}
  onPause={() => console.log('Paused')}
  onError={(error) => console.error('Error:', error)}
  onTimeUpdate={(currentTime, duration) => {
    console.log(`${currentTime}s / ${duration}s`);
  }}
/>

Logging

The package exposes a configurable logger for runtime warnings/errors and optional debug/info output.

import { createConsoleLogger, setPlayerLogger } from '@madraka/nextjs-videoplayer';

// Enable debug logs in development, keep warn/error in all environments
setPlayerLogger(
  createConsoleLogger({
    debug: process.env.NODE_ENV !== 'production',
    info: false,
    warn: true,
    error: true,
  })
);

To silence all package logs:

import { setPlayerLogger } from '@madraka/nextjs-videoplayer';

setPlayerLogger({
  debug: () => {},
  info: () => {},
  warn: () => {},
  error: () => {},
});

Preset

Use the official default setup:

import { PlayerPresets } from '@madraka/nextjs-videoplayer';

<PlayerConfigProvider config={PlayerPresets.default}>

🔧 Configuration Options

Player Configuration

Create custom configurations for different use cases:

import { PlayerConfig } from '@madraka/nextjs-videoplayer';

const customConfig: PlayerConfig = {
  theme: {
    primaryColor: '#3b82f6',
    backgroundColor: '#000000',
    controlsOpacity: 0.8,
  },
  controls: {
    showPlayButton: true,
    showVolumeControl: true,
    showProgressBar: true,
    showFullscreenButton: true,
    showSettingsButton: true,
    autoHide: true,
    autoHideDelay: 3000,
  },
  playback: {
    autoPlay: false,
    muted: false,
    loop: false,
    playsInline: true,
    preload: 'metadata',
  },
  gestures: {
    enabled: true,
    doubleTapToSeek: true,
    swipeToSeek: true,
    pinchToZoom: false,
  },
  analytics: {
    enabled: true,
    trackPlay: true,
    trackPause: true,
    trackSeek: true,
    trackQualityChange: true,
  }
};

<PlayerConfigProvider config={customConfig}>
  <ConfigurableVideoPlayer src="video.m3u8" />
</PlayerConfigProvider>

Video Formats Support

The player automatically detects and handles multiple video formats:

  • HLS (.m3u8) - HTTP Live Streaming for adaptive bitrate
  • DASH (.mpd) - Dynamic Adaptive Streaming over HTTP
  • MP4 - Standard progressive download
  • WebM - Modern web video format
  • MOV - QuickTime format
// HLS Stream
<ConfigurableVideoPlayer src="https://example.com/stream.m3u8" />

// DASH Stream  
<ConfigurableVideoPlayer src="https://example.com/stream.mpd" />

// Progressive MP4
<ConfigurableVideoPlayer src="https://example.com/video.mp4" />

// Multiple sources with fallback
<ConfigurableVideoPlayer 
  src={[
    { src: "video.m3u8", type: "application/x-mpegURL" },
    { src: "video.mp4", type: "video/mp4" }
  ]} 
/>

🎨 Styling

With Tailwind CSS

The player works seamlessly with Tailwind CSS:

<ConfigurableVideoPlayer
  src="video.m3u8"
  className="rounded-lg shadow-xl"
  aspectRatio="16/9"
/>

📱 Mobile Optimization

The player automatically detects mobile devices and provides:

  • Touch-optimized controls
  • Gesture support (tap, double-tap, swipe)
  • Auto-hide controls
  • Responsive layout
  • Mobile-first design

🔧 Advanced Features

Analytics

const analyticsConfig = {
  analytics: {
    enabled: true,
    trackPlay: true,
    trackPause: true,
    trackSeek: true,
    trackQualityChange: true
  }
};

Keyboard Shortcuts

  • Space - Play/Pause
  • F - Fullscreen
  • M - Mute/Unmute
  • ←/→ - Seek backward/forward
  • ↑/↓ - Volume up/down

Thumbnail Previews

<ConfigurableVideoPlayer
  src="video.m3u8"
  thumbnailUrl="https://cdn.example.com/thumbnails/"
  // Expects thumbnails at: thumbnailUrl + "sprite.jpg"
  // And thumbnails.vtt for timing information
/>

🛠️ Development

# Clone the repository
git clone https://github.com/madraka/nextjs-videoplayer.git

# Install dependencies
pnpm install

# Start development server
pnpm dev

# Build package
pnpm build:package

CI/CD Pipelines

This repository uses two separate GitHub Actions workflows:

  • Showcase CI (.github/workflows/showcase-ci.yml)

    • Runs on push and pull_request to main
    • Validates showcase quality: lint, type-check, build
    • Does not publish to npm
  • Package Publish (.github/workflows/package-publish.yml)

    • Runs on version tags like v1.2.3
    • Validates package quality and runs build:package
    • Publishes to npm and creates a GitHub Release

This keeps Vercel showcase deployment and npm package publishing isolated.

Monorepo Migration Status

  • Workspace scaffolding is active via pnpm-workspace.yaml.
  • Planned target layout:
    • apps/showcase
    • packages/player
  • Current runtime remains at repository root to avoid deployment interruption.
  • Migration plan and phases are documented in docs/ROADMAP.md.

Release Flow

# 1) add a changeset in your feature/fix branch
pnpm changeset

# 2) merge PR, then prepare versions/changelog on main
pnpm changeset:version
git add .changeset package.json pnpm-lock.yaml CHANGELOG.md
git commit -m "release: version packages"

# 3) validate release candidate
pnpm release:check

# 4) create and push tag from package.json version
pnpm release:tag
git push origin main

When the vX.Y.Z tag is pushed, Package Publish handles npm publish + GitHub release.

GitHub Installation

For direct GitHub installation:

# Latest from main branch
npm install github:Madraka/nextjs-videoplayer

# Specific version/tag
npm install github:Madraka/nextjs-videoplayer#v1.0.0

# In package.json
{
  "dependencies": {
    "@madraka/nextjs-videoplayer": "github:Madraka/nextjs-videoplayer#v1.0.0"
  }
}

📦 Package Structure

@madraka/nextjs-videoplayer/
├── dist/                 # Built package
├── src/
│   ├── components/       # React components
│   ├── hooks/           # Custom hooks  
│   ├── core/            # Video engine
│   ├── types/           # TypeScript types
│   └── lib/             # Utilities
├── README.md
└── package.json

🤝 Contributing

Contributions are welcome! Please read our Contributing Guide for details.

📄 License

MIT License - see LICENSE file for details.

🙏 Acknowledgments


Made with ❤️ for the Next.js community