Giter Club home page Giter Club logo

Comments (6)

jodyheavener avatar jodyheavener commented on August 21, 2024

Also tried posting to the web worker on each interval:

Main JS

toggleSnapshotRecord() {
  this.isRecording = !this.isRecording;
  $(document.body).toggleClass("is-recording");

  let interval = (this.captureSecondsDelay - 1) * 1000;
  let snapCount = 0;

  if (this.isRecording) {
    this.snapshotInterval = setInterval(() => {
      let messageData = {
        size: [this.outputWidth, this.outputHeight],
        frame: this.canvasContext.getImageData(0, 0, this.outputWidth, this.outputHeight)
      };

      if (snapCount === 0)
        messageData["start"] = true;

      if (snapCount === this.captureFramesNumber - 1)
        messageData["finish"] = true;

      this.gifWorker.postMessage(messageData);

      snapCount = snapCount + 1;
      if (snapCount === this.captureFramesNumber)
        return this.toggleSnapshotRecord();
    }, interval);
  } else {
    clearInterval(this.snapshotInterval);

    this.gifWorker.onmessage = function(event) {
      console.log(event.data);
    };
  };
};

Web Worker

var encoder = new GIFEncoder();
    encoder.setRepeat(0);
    encoder.setDelay(300);

self.addEventListener("message", function(event) {
  var data = event.data;

  if (data.start) {
    encoder.start();
  } else {
    encoder.setProperties(true, true);
  }

  encoder.setSize(data.size[0], data.size[1]);
  encoder.addFrame(data.frame, true);

  if (data.finish) {
    encoder.finish();
    self.postMessage("data:image/gif;base64," + encode64(encoder.stream().getData()));
  }
}, false);

from jsgif.

Joncom avatar Joncom commented on August 21, 2024

Does the black output GIF at least appear to have the correct number of frames?

from jsgif.

jodyheavener avatar jodyheavener commented on August 21, 2024

Negative. It looks to be just the one frame (upon inspection in Apple Preview).

from jsgif.

jodyheavener avatar jodyheavener commented on August 21, 2024

Got it. In passing data.frame to encoder.addFrame() I was passing an ImageData object to it, when I should have been passing the ImageData's data – all in all I just had to change it to encoder.addFrame(data.frame.data, true).

from jsgif.

jodyheavener avatar jodyheavener commented on August 21, 2024

download

from jsgif.

claybudin avatar claybudin commented on August 21, 2024

Why are you calling:

encoder.setProperties(true, true);

? It seems like those are internal parameters managed by the encoder and don't need to be changed.

Also it looks like the setSize() call can be moved into the if (data.start) { ... } area.

Clay Budin
NYC

from jsgif.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.