Forum Replies Created

  • Ad Van dijk

    April 30, 2012 at 6:09 pm in reply to: Problem with green screening drumkit cymbals

    Thanks, I’ll go and look for that spray.

  • Ad Van dijk

    April 30, 2012 at 3:13 am in reply to: Problem with green screening drumkit cymbals

    Thanks for your reply.
    You’d be surprised how many people like to watch videos of just drummers 🙂
    But it’s also for projects me and some friends are doing. Playing music at home, shooting a video of that and then stick the whole thing together as if it’s a ‘real’ band.
    But I’m not gonna dirty up my cymbals. They’re gonna sound terrible that way. But I guess I will have start roto-ing some stuff.
    I hadn’t thought of just plugging up the holes with a layer on top. Thanks for your advise!

  • Ad Van dijk

    April 30, 2012 at 3:09 am in reply to: Problem with green screening drumkit cymbals

    Thanks for your reply.
    I tried and moved the whole drumkit forward about 2 meters and that made a big difference.
    Thanks again for your advise!

  • Ad Van dijk

    April 27, 2012 at 8:46 pm in reply to: Bounce back of a falling suspended sign

    // Inertial Bounce (moves settle into place after bouncing around a little)
    n = 0;
    if (numKeys > 0){
    n = nearestKey(time).index;
    if (key(n).time > time){
    n–;
    }
    }
    if (n == 0){
    t = 0;
    }else{
    t = time – key(n).time;
    }

    if (n > 0){
    v = velocityAtTime(key(n).time – thisComp.frameDuration/10);
    amp = .05;
    freq = 4.0;
    decay = 2.0;
    value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t);
    }else{
    value;
    }

    Change amp, freq and decay to your personal preferences.

We use anonymous cookies to give you the best experience we can.
Our Privacy policy | GDPR Policy