我使用的是Angle 4,并且正在使用recordRTC从网络摄像头录制...我出现斑点...并且我想在视图中显示该视频...而且我不知道这是什么。在界面中显示的方式...有人可以给我建议吗
processVideo(audioVideoWebMURL) {
let video: HTMLVideoElement = this.video.nativeElement;
let recordRTC = this.recordRTC;
video.src = audioVideoWebMURL;
console.log(video.src);
//this console giving blob of
//[Eg:blob:http://localhost:4500/43113be2-c54e-42f6-b1bd-9b5907439e77]
this.toggleControls();
var recordedBlob = recordRTC.getBlob();
recordRTC.getDataURL(function (dataURL) {
console.log(dataURL);
//this Console giving base64 string...
});
}