Coder Social home page Coder Social logo

reusing a past video texture about curtainsjs HOT 5 OPEN

mattetti avatar mattetti commented on June 3, 2024
reusing a past video texture

from curtainsjs.

Comments (5)

martinlaxenaire avatar martinlaxenaire commented on June 3, 2024

Hey @mattetti,

I remember having experimented with that kind of glitches effects a while ago. I was just using the same video twice with 2 separate textures and started one of the video playback after a small delay. It may not be the most optimized way to do this tho.

Looking at your code block I wonder why you'd not written something like that instead:

const altTexture = new Texture(texture.renderer, {
    sampler: "altTexture"
});
altTexture.copy(texture);

But maybe I've misunderstood what you were actually doing?

Cheers,

from curtainsjs.

mattetti avatar mattetti commented on June 3, 2024

@martinlaxenaire setting up the texture as shown makes a lot of sense. Thank you. But I'm still not sure how to get the texture passed via uniforms.
Is calling _setTextureUniforms() on the new texture, the right way?

from curtainsjs.

martinlaxenaire avatar martinlaxenaire commented on June 3, 2024

@mattetti I'm still not sure to understand what you are trying to do?

Anyway you shouldn't try to access those private properties and methods. The copy() method should do the trick.

from curtainsjs.

mattetti avatar mattetti commented on June 3, 2024

Unfortunately, that doesn't work and even break the main texture. (everything runs but I don't have any textures).

What i'm trying to do is what you achieved by using 2 instances of the same video but delayed. But I'm trying to achieve the same thing with only 1 video and sample the video at different times. Does that make sense?

from curtainsjs.

martinlaxenaire avatar martinlaxenaire commented on June 3, 2024

Hey @mattetti,

Yeah I mean I understood what you were trying to do, I just didn't understand what you were doing with your custom onVideoFrameCallback function.

Anyway I think the simplest way to achieve that is to just clone/duplicate the video element, create a second texture with it and start its playback after a small delay.

Cheers,

from curtainsjs.

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.