RecordRTC

UI Extension

RecordRTC is a JavaScript library for recording audio, video, and screen activity directly in the browser using WebRTC.

Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #148
KEY FEATURES
Audio recording
Video recording
Screen recording
WebRTC
Multiple formats
Canvas recording
GIF recording
Usage Example

Here's how you'll use RecordRTC with Oorian once the extension is available:

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

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

// Register for events using Oorian's event model
component.registerForEvent(this, RecordRTCEvent.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.