Dash.js

UI Extension

dash.js is the reference client for MPEG-DASH streaming, providing adaptive bitrate playback for web applications.

Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #146
KEY FEATURES
MPEG-DASH
Adaptive bitrate
Low latency
DRM support
Multi-period
Multi-audio
Thumbnails
Usage Example

Here's how you'll use Dash.js with Oorian once the extension is available:

Java
// Create and configure Dash.js component
Dashjs component = new Dashjs();
component.setWidth("100%");
component.setHeight("400px");

// Configure component options
component.setEnabled(true);

// Register for events using Oorian's event model
component.registerForEvent(this, DashjsEvent.class);

// Add to your page
container.addElement(component);

Note: This is a preview of the expected API. The actual implementation may vary slightly when released.