2024-11-01 10:03:15 -03:00
|
|
|
#import <DOM/EventHandler.idl>
|
|
|
|
|
#import <MediaSourceExtensions/MediaSource.idl>
|
|
|
|
|
|
|
|
|
|
// https://w3c.github.io/media-source/#managedmediasource-interface
|
|
|
|
|
[Exposed=(Window,DedicatedWorker)]
|
|
|
|
|
interface ManagedMediaSource : MediaSource {
|
|
|
|
|
constructor();
|
|
|
|
|
[FIXME] readonly attribute boolean streaming;
|
2024-11-17 20:13:48 -03:00
|
|
|
attribute EventHandler onstartstreaming;
|
|
|
|
|
attribute EventHandler onendstreaming;
|
2024-11-01 10:03:15 -03:00
|
|
|
};
|