Baseline Widely available
The start
event of the MediaRecorder
interface is fired when MediaRecorder.start()
is called. At this point, the data starts being gathered into a Blob
.
Use the event name in methods like addEventListener()
, or set an event handler property.
addEventListener("start", (event) => { })
onstart = (event) => { }
Event type
A generic Event
.
record.onclick = () => {
mediaRecorder.start();
console.log("recorder started");
};
mediaRecorder.onstart = () => {
// do something in response to
// recording being started
};
Specifications Browser compatibility See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4