Video Player CDN Demo

Launch cinematic playback in minutes.

Fluxn is a modern HLS video player with episodes, audio tracks, subtitles, and touch-first controls. Use the API to wire up playback, navigation, and dynamic UI in any project.

Episode Navigation

Ship multi-episode playlists with rich metadata, thumbnails, and quick switching.

Audio + Subtitles

Provide multiple audio tracks and subtitle files for an inclusive player experience.

Touch First

Gesture-friendly controls, double-tap seeking, and lock screen mode baked in.

API Driven

Control playback with a clean API: play, pause, seek, speed, quality, and more.

API Playground

Try a few core API calls from the buttons below.

<div id="player"></div>

<script>
const player = new VPlayer('#player', {
  src: 'https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8',
  poster: 'https://peach.blender.org/wp-content/uploads/title_anouncement.jpg',
  episodes: [
    { id: 1, title: 'Episode 1', src: 'https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8' },
    { id: 2, title: 'Episode 2', src: 'https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8' },
  ],
});

player.play();
</script>