diff --git a/src/site/content/en/blog/media-recording-video/index.md b/src/site/content/en/blog/media-recording-video/index.md index 33487ce9d8b..5761675280b 100644 --- a/src/site/content/en/blog/media-recording-video/index.md +++ b/src/site/content/en/blog/media-recording-video/index.md @@ -184,7 +184,7 @@ progressively save the data from the stream to you preferred destination. var handleSuccess = function(stream) { const options = {mimeType: 'video/webm'}; const recordedChunks = []; - const mediaRecorder = new MediaRecorder(stream, options); + const mediaRecorder = new MediaRecorder(stream, options); mediaRecorder.addEventListener('dataavailable', function(e) { if (e.data.size > 0) { @@ -202,7 +202,7 @@ progressively save the data from the stream to you preferred destination. downloadLink.download = 'acetest.webm'; }); - mediaRecorder.start(); + mediaRecorder.start(); }; navigator.mediaDevices.getUserMedia({ audio: true, video: true })