How to Make “When I Was Your Age” Footage

Download Source Files

Final Product What You'll Be Creating

My dad used to always say, “When I was your age, we didn’t have children.” Well with people like that you might have to convert your footage into something a little more familiar. There are lots of tutorials on creating that “old film” look, but I felt like Brock did a good job presenting a method that didn’t require any expensive plug-in presets and could be done quickly… Enjoy!

Tutorial

Download Tutorial .flv

File size 37MB

Add Comment

Discussion 15 Comments

  1. greg says:

    I think they didn’t have rolling shutter distortion back then…

  2. MINIMUS says:

    intereseting technic… sound would add a little bit flavor..

  3. Nick says:

    Laconic, useful, nice. Just the way tutorial should be, good job mate, thanks.

  4. Shifter says:

    Nice man, ^^ Did a get job there

  5. SPCproductions says:

    what about adding a strobe lighting effect…a bit of a flicker?

  6. Dumm says:

    i like old stuff. definitely i will try this technique. thanke you very much.

  7. If you’d like the not hand animate the scratches line, but keep it randomly moving and jumping, create the solid, like the tutorial, but instead of keyframing the position: apply the “Separate XYZ Position” preset. Then Option/Alt click on the “X Position” stopwatch. Paste the following code in:

    holdTime = .5; // Time, in seconds, before the random seed chooses a new number

    seed = Math.floor(time/holdTime); // Doing the math to generate the hold time
    seedRandom(seed,true); // Generating, and holding, the random seed
    randNum=random(0,100); // Generating a random number

    wiggleRange = (thisComp.width/2)+50; // Setting the range of the wiggle to half the comp +50

    if(randNum>50) { // If/then statement that makes the solid jump if the random number goes above 50
    y=wiggle(.25,wiggleRange);
    } else {
    y=wiggle(.25,-wiggleRange);
    }

    It’s commented to tell you what it does.

  8. Ryan McAfee says:

    It’s amazing how many people ask for this effect. Good job! Quick and to the point.

  9. frankyframe says:

    it would be nice to add some flicker light and more detail screatches and dots in the footage. but s oke

  10. TonyDRKT says:

    I especially like how you say AE toots LOL

    I chuckled at that.

  11. Klas says:

    Thanks for the tut!!

  12. Graeme says:

    Short, sweet, to the point.

    I hate sitting through tutorials with a lot of rambling. This was right up my alley.

  13. Loay Emad says:

    Thanks for the Tutorial

  14. Austen says:

    I had to laugh at your decription, “When I was your age, we didn’t have children” So true! Anyway, I was dying to try and make my own effect like this, and then I found your tutorial. Awesome job man :D

Add a Comment

To add a code snippet to your comment, please wrap your code like so: <pre name="code" class="html">YOUR CODE</pre>. You can replace the class name with "js," "css," "sql," or "php." If there are any "<" or ">" within your code, please search and replace them with: &lt; and &gt; respectively.