Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Activity Forums Adobe After Effects Expressions Showing Date of Footage

  • Showing Date of Footage

    Posted by Nicholas Adamson on May 25, 2014 at 2:08 am

    Hello. I’ll be making a video like this https://vimeo.com/56783189 , and am gonna start early so its not some big mess to start in 2015.

    Using the Numbers effect doesn’t display the date in the format I want, as I simply wish to just show it in Month Name + Day #, so January 1. Exactly as shown in the above video. Also tried out date() expressions and none worked the way I wanted to. Is there any fast way of doing this or will I need to create a bunch of text layers? Would it be easier in Premiere?

    Thanks in advance.

    Some contents or functionalities here are not available due to your cookie preferences!

    This happens because the functionality/content marked as “Vimeo framework” uses cookies that you choosed to keep disabled. In order to view this content or use this functionality, please enable cookies: click here to open your cookie preferences.

    Dan Ebberts replied 12 years, 3 months ago 2 Members · 1 Reply
  • 1 Reply
  • Dan Ebberts

    May 25, 2014 at 2:47 pm

    Play around with this:

    msPerDay = 86400000;
    period = 1; // change day every 1 second
    months = [“January”,”February”,”March”,”April”,”May”,”June”,”July”,”August”,”September”,”October”,”November”,”December”];

    curSeg = Math.floor(time/period);
    d = new Date(curSeg*msPerDay);
    months[d.getUTCMonth()] + ” ” + d.getUTCDate()

    Dan

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