我是网络开发的初学者,并且正在开发使用create-react-app
构建的视频聊天应用。我正在使用recordRTC
库来记录和从用户的网络摄像头和麦克风流式传输。
当我停止录制时,我也想关闭摄像头。
import React, { Component } from "react";
import RecordRTC from "recordrtc";
const captureUserMedia = callback => {
const params = { audio: true, video: true };
navigator.mediaDevices
.getUserMedia(params)
.then(callback)
.catch((error) => {
console.error(JSON.stringify(error));
});
};
export default class Recorder extends Component {
constructor(props) {
super(props);
this.recordVideo = null;
this.videoRef = React.createRef();
}
componentDidMount = () => {
captureUserMedia(stream => (this.videoRef.current.srcObject = stream));
};
startRecord = () => {
captureUserMedia(stream => {
this.recordVideo = RecordRTC(stream, { type: "video" });
this.recordVideo.startRecording();
});
};
stopRecord = () => {
this.recordVideo.stopRecording();
this.videoRef.current.srcObject.getTracks().forEach((track) => {
track.stop();
});
};
render() {
return (
<div>
<video ref={this.videoRef} autoPlay muted />
<div>
<button onClick={this.startRecord}>START</button>
<button onClick={this.stopRecord}>STOP</button>
</div>
</div>
);
}
}
我发现here的相关帖子,我发现了这一点:
stream.getTracks().forEach((track) => {
track.stop()
})
这将停止流,但是导航器选项卡(铬)上仍然存在红色圆圈,并且网络摄像头的灯光仍在闪电。
如何关闭网络摄像头?
我发现的唯一方法是强制重新加载,但是我真的不想这么做...
如果有人有想法,请告诉我。
感谢您的回复:)
答案 0 :(得分:0)
我调用了两次getUserMedia()
方法,而不是只调用了一次(使用captureUserMedia函数)。
您可以尝试使用下面的代码,这没关系!
...
componentDidMount = () => {
captureUserMedia((stream) => {
this.videoRef.current.srcObject = stream;
this.recordVideo = RecordRTC(stream, { type: "video" });
});
};
startRecord = () => {
this.recordVideo.startRecording();
};
stopRecord = () => {
this.recordVideo.stopRecording();
this.videoRef.current.srcObject.getTracks().forEach((track) => {
track.stop();
});
};
...