question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Please link: https://www.webrtc-experiment.com/screenshot.js ERROR in Crome Console

See original GitHub issue

I 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

Screenshot from 2020-09-28 14-37-45 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:closed
  • Created 3 years ago
  • Comments:6

github_iconTop GitHub Comments

2reactions
nhhai1605commented, Aug 27, 2022

Hello @RacketyWater7 , I fixed it by adding <script src="https://www.webrtc-experiment.com/screenshot.js"></script>

0reactions
RacketyWater7commented, Jun 10, 2022

@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: image

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found