BlobEvent
Baseline Widely available *
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2020.
* Some parts of this feature may have varying levels of support.
TheBlobEvent interface of theMediaStream Recording API represents events associated with aBlob. These blobs are typically, but not necessarily, associated with media content.
In this article
Constructor
BlobEvent()Creates a
BlobEventevent with the given parameters.
Instance properties
Inherits properties from its parentEvent.
BlobEvent.dataRead onlyA
Blobrepresenting the data associated with the event. The event was fired on theEventTargetbecause of something happening on that specificBlob.BlobEvent.timecodeRead onlyA
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.
Instance methods
No specific method; inherits methods from its parentEvent.
Specifications
| Specification |
|---|
| MediaStream Recording> # blobevent-section> |
Browser compatibility
See also
- The
Eventbase interface. - MediaStream Recording API: Sends
BlobEventobjects each time a chunk of media is ready. - Using the MediaStream Recording API