Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CCapture with setInterval not working #142

Open
Martibis opened this issue Jul 25, 2022 · 0 comments
Open

CCapture with setInterval not working #142

Martibis opened this issue Jul 25, 2022 · 0 comments

Comments

@Martibis
Copy link

Martibis commented Jul 25, 2022

Initialization:

let capturer = new CCapture({
  display: true,
  framerate: 30,
  format: "webm",
  verbose: true,
});

In my setup function (called before draw):

capturer.start();

In my draw function (inside draw there is another function called drawing, which draws the changes to the canvas):

 let t = setInterval(async () => {
      if (!paused) {
        counter++;
        console.log(counter);
        await drawing(counter);
         capturer.capture(canvas);
        if (counter == 100) {
          capturer.stop();
          capturer.save();
          paused = !paused;
        }
      }
    }, 20);

Code exexuction seems to stop the moment the setInterval function is reached.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant