Episode Navigation
Ship multi-episode playlists with rich metadata, thumbnails, and quick switching.
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.
Ship multi-episode playlists with rich metadata, thumbnails, and quick switching.
Provide multiple audio tracks and subtitle files for an inclusive player experience.
Gesture-friendly controls, double-tap seeking, and lock screen mode baked in.
Control playback with a clean API: play, pause, seek, speed, quality, and more.
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>