Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Activity Forums Adobe After Effects Making a reverse TC generator.

  • Making a reverse TC generator.

    Posted by Anders Haavie on July 9, 2018 at 6:28 am

    I am really hard trying to find a TC generator effect that I can put on lots of clips in a timeline imported from Premiere that gives me the countdown time on each individual clip. A friend of mine is producing big live shows and he blocks them out before the show with dummy camera angles. The camera guys needs to know how many seconds they are live before an edit. Been googling alot around for this. Apearantly Avid has this posibility..

    I would ideally do this in Premiere, but I guess it is bigger chance of making this work in AE.

    https://forums.creativecow.net/readpost/3/1004902 (original post in the Premiere forum)

    Anders

    Xraid-Xserve-Xsan-Xeverything

    Walter Soyka replied 7 years, 9 months ago 2 Members · 3 Replies
  • 3 Replies
  • Anders Haavie

    July 9, 2018 at 8:21 pm

    This guy is traveling around the world making big international productions. (also for big US channels)

    When editing music show the live editing is very precise.. I don’t know exactly how his workflow is concerning the cameraguys, but this guy knows what he is doing. This is just for preparation of the editing, the actual productions is as described by another guy on the Premiere Forum.

    (Typically U.K. multicam music directors block out to a music script/score & have an experienced music script-super/AD count the bars & shots. Search YouTube for Hamish Hamilton and you’ll get an idea.)

    Xraid-Xserve-Xsan-Xeverything

  • Anders Haavie

    July 10, 2018 at 6:04 am

    Well.. he has been working with FCP since 5.0 days and has just recently made the switch from FCP 7 to Premiere. It was the least painfull, and FCP X was never an option since nobody is using it in broadcast work.

    Xraid-Xserve-Xsan-Xeverything

  • Walter Soyka

    July 10, 2018 at 1:54 pm

    You can do this in Ae with an expression.

    Import your Premiere edit into Ae, then add a Text layer as the top layer, above everything else in the edit. Twirl the text layer open, then twirl the Text layer group open, then Alt+click the Source Text stopwatch and paste this code:

    layerName = "";
    layerCountdown = "";
    for (var i = index+1; i <= thisComp.numLayers; i++) {
    if (thisComp.layer(i).active) {
    layerName = thisComp.layer(i).name;
    layerCountdown = timeToTimecode(thisComp.layer(i).outPoint - time, timecodeBase = 1/thisComp.frameDuration, isDuration = true);
    }
    }
    layerName + "\n" + layerCountdown;

    This will display the name and countdown for the active layer at the top of the stack (below the text layer).

    Walter Soyka
    Designer & Mad Scientist at Keen Live [link]
    Motion Graphics, Widescreen Events, Presentation Design, and Consulting
    @keenlive   |   RenderBreak [blog]   |   Profile [LinkedIn]

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