MediaRecorder.stream
The MediaRecorder.stream
read-only property returns the
stream that was passed into the MediaRecorder()
constructor when the
MediaRecorder
was created.
Value
The MediaStream passed into the MediaRecorder()
constructor when the
MediaRecorder
was originally created.
Examples
if (navigator.getUserMedia) {
console.log('getUserMedia supported.');
navigator.getUserMedia (
// constraints - only audio needed for this app
{
audio: true
},
// Success callback
function(stream) {
var mediaRecorder = new MediaRecorder(stream);
var myStream = mediaRecorder.stream;
console.log(myStream);
...
Specifications
Specification |
---|
MediaStream Recording # dom-mediarecorder-stream |
Browser compatibility
BCD tables only load in the browser
See also
- Using the MediaRecorder API
- Web Dictaphone: MediaRecorder + getUserMedia + Web Audio API visualization demo, by Chris Mills (source on GitHub.)
- simpl.info MediaStream Recording demo, by Sam Dutton.
Navigator.getUserMedia