Please link: https://www.webrtc-experiment.com/screenshot.js ERROR in Crome Console
See original GitHub issueI am trying to record animation overlayed over video element using RecordRTC in Angular 9 but when I start recording it gives me an error of “Please link: https://www.webrtc-experiment.com/screenshot.js”
You can see the error in the above image
my code `play = () => { const square = new Square(this.ctx); this.squares = this.squares.concat(square); // this.draw(); const recorder = new RecordRTC(this.canvas.nativeElement, { type: ‘canvas’, mimeType: ‘video/webm;codecs=h264’ }); recorder.startRecording();
recorder.stopRecording(() => {
const recordedBlobs = recorder.getBlob();
const url = URL.createObjectURL(recordedBlobs);
console.log(url);
const file = new File([recordedBlobs], 'video.mp4', {
type: 'video/mp4'
});
invokeSaveAsDialog(file, 'test');
});
}` @muaz-khan
Issue Analytics
- State:
- Created 3 years ago
- Comments:6
Top Results From Across the Web
WebRTC Demos, Experiments, Libraries, Examples | Muaz ...
WebRTC JavaScript library for audio/video as well as screen activity recording. It supports Chrome, Firefox, Opera, Android, and Microsoft Edge.
Read more >Screen recording using RecordRTC - Unable to record video ...
Pause right-side video to listen recorded sound. (2) Chrome user needs to install extension: https://chrome.google.com/webstore/detail/screen- ...
Read more >Screen capture - quality is very bad, how to improve it?
See the screen capture shot with webRTC (tested Linux, Windows) same no better quality (Google chrome 32, and Canary tested). Thank you.
Read more >webrtc-screen-capturing - npm
Live Demo: https://www.webrtc-experiment.com/getScreenId/ ... Please check Chrome console logs for further information.');.
Read more >Source: RecordRTC.js
disableLogs) {; console.log('started recording ' + config.type + ' stream. ... throw new Error('Please link: https://cdn.webrtc-experiment.com/EBML.js'); ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Hello @RacketyWater7 , I fixed it by adding
<script src="https://www.webrtc-experiment.com/screenshot.js"></script>@hiren3897 For me, its creating a lot of errors in the screenshot.js file. What I did is I created this file in the same directory as the file where I’m using it and imported it like:
import "./screenshot.js"and its showing a lot of errors in the screenshot.js file. 😦 some are below: