Как я могу остановить камеру после нажатия на кнопку остановки. сейчас я использую этот код. но он не выключает камеру после нажатия на кнопку остановки
document.querySelector('#stop').onclick = function() {
this.disabled = true;
mRecordRTC.stopRecording(function(url, type) {
console.log(mRecordRTC);
document.querySelector(type).srcObject = null;
document.querySelector(type).src = url;
document.querySelector(type).play();
// fixing firefox playback issue
if (!!navigator.mozGetUserMedia) {
document.querySelector(type).onended = function() {
document.querySelector(type).srcObject = null;
document.querySelector(type).src = URL.createObjectURL(mRecordRTC.getBlob()[type]);
document.querySelector(type).play();
};
}
mRecordRTC.writeToDisk();
save.disabled = false;
//mRecordRTC.camera.stop();
///mRecordRTC.destroy();
//mRecordRTC = null;
});
};