web api interface
BlobEvent
The BlobEvent interface of the MediaStream Recording API represents events associated with a Blob. These blobs are typically, but not necessarily, associated with media content.
Constructor
BlobEvent()- : Creates a
BlobEventevent with the given parameters.
- : Creates a
Instance properties
Inherits properties from its parent Event.
dataRead only- : A
Blobrepresenting the data associated with the event. The event was fired on theEventTargetbecause of something happening on that specificBlob.
- : A
timecodeRead only- : A
DOMHighResTimeStampindicating the difference between the timestamp of the first chunk in data and the timestamp of the first chunk in the first BlobEvent produced by this recorder. Note that the timecode in the first produced BlobEvent does not need to be zero.
- : A
Instance methods
No specific method; inherits methods from its parent Event.
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.
See also
- The
Eventbase interface. - MediaStream Recording API: Sends
BlobEventobjects each time a chunk of media is ready. - Using the MediaStream Recording API