Open source JavaScript player for building frame accurate video experiences
Why Omakase Player?
Frame accurate playback and review of temporal metadata are essential to the creation and distribution of video. To help the industry, we developed Omakase Player to address use cases in broadcast, video QC and editorial. We look forward to seeing the player used by the community in new and innovative projects.
Core Player
Frame accurate video playback
Built using HTML5 & Media Source Extensions API
HLS support and extendable to other streaming protocols
Mappable to professional keyboards and jog/shuttle controls
Visualization of subtitles
Adjustable playback rate
Timeline
Multi-track timeline with unlimited depth
Interactive segment and point visualization
Presentation of thumbnail tracks
Visualization of subtitles and waveforms
Line and bar chart presentation of data
VU Meter
Visualize levels of multi-channel audio tracks
Build-on Web Audio API
Audio Router (Coming…)
Map input channels to output channels
Isolate individual channels
Dynamically detects available hardware channels
QC complex sound fields on stereo equipment
Marker List (Coming…)
Organizes segments into cut-lists
Keyframe presentation
Preview scrubbing
Build your frame accurate experience from components or get started with the Reference Player
Key Features:
Multi-Track Media
Review media bundles consisting of multiple audio and subtitle tracksVisualization Options
Multiple ways to review analysis datasets, segmentation information and other forms of temporal metadataAudio Review
Support for stereo and 5.1 audio, VU meter and waveform visualization, ability to isolate individual audio channelsTech Metadata
Presents source information and technical metadata to support troubleshooting and deeper analysis
Extensible Design
Angular web app built around a modular UX. Easy to customize or embed within an existing business processData Driven
UX driven from information extracted from a standard HLS manifest and an open JSON document structureEasy to Deploy
Simple to deploy in the cloud or host on-prem. Requires a standard web serverOpen Source
Apache License. Free to use, modify or embed within your supply chain
Omakase Player is SIMPLE TO BOOTSTRAP AND INiTIALIZE
Player initialization SAMPLE
<html> <head> <script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script> <script src="https://cdn.jsdelivr.net/npm/@byomakase/omakase-player@0.10.0/dist/omakase-player.umd.js"></script> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@byomakase/omakase-player@0.10.0/dist/style.css"> <script> function initPlayer() { let omakasePlayer = new omakase.OmakasePlayer(); omakasePlayer.loadVideo('https://d2minmdu7vzq2y.cloudfront.net/content/sample/tears-of-steel.m3u8', 24).subscribe(); omakasePlayer.createTimeline({ thumbnailVttUrl: 'https://d2minmdu7vzq2y.cloudfront.net/content/sample/thumbnails.vtt', }).subscribe(timeline => { let thumbnailLane = new omakase.ThumbnailLane({ description: 'Thumbnails', vttUrl: 'https://d2minmdu7vzq2y.cloudfront.net/content/sample/thumbnails.vtt' }) timeline.addTimelineLane(thumbnailLane); }); } </script> </head> <body onload="initPlayer()"> <div id="omakase-player"></div> <div id="omakase-timeline"></div> </body> </html>