How to get great looking smooth rolling credits in After Effects with no jitter or judder!

Поделиться
HTML-код
  • Опубликовано: 23 янв 2025

Комментарии •

  • @sultanscourt
    @sultanscourt 4 года назад +4

    This is officially the best tutorial for rolling credits, as it accounts for all the pitfalls that are not obvious at first, when starting to work on such animation and crediting all the great sources out there with details about the why and how. Thank you!

  • @ufroilan
    @ufroilan 3 года назад +2

    horizontal credits?

  • @serchbcn
    @serchbcn Год назад

    Hi Kyle, thanks for the expression. But what if I need to start with the first set of names on screen and smoothly start rolling to a constant speed. Working with a slider (from 0 to 4) and easing the first keyframe to change the rate don't seem to work.

  • @therealjimmymo
    @therealjimmymo 6 лет назад +4

    Yes! Best tutorial on this that I've found. I wish I found this first! Would of saved me a boat load of time. Thank you!!!

  • @emiliavee
    @emiliavee Год назад +1

    if you need to go faster and you have a lot of names I think there's just really no solution. I have to have the "speed" on 7 and I feel like it's the same with or without the code.

  • @HAZARTfilms
    @HAZARTfilms 5 лет назад +1

    Any idea how to make the last element of the crawl, say the TITLE OF FILM, come to the center of the screen and stop, then fade out?

    • @FarzaanBulsara
      @FarzaanBulsara 4 года назад +1

      separate layer at the same speed and distance from the main crawl, and then just have its motion keyframe stop at the time of your choosing. Then you just apply a simple fade to whatever colour or layer you wish.

  • @granduelist
    @granduelist 4 года назад +2

    Good lesson. Thanks! Does anyone know how to modify the code to include stop the crawl and/or allow easing the animation in and out?

  • @ilurakesh1
    @ilurakesh1 5 лет назад +2

    plz sir.... horizontal script will salve my issue...left to right scrolling

    • @pellebusch-jensen7831
      @pellebusch-jensen7831 4 года назад +1

      rate = 20; //value in px/sec.
      if (marker.numKeys > 0){
      if (time > marker.key(1).time){
      value - [rate*timeToFrames(time-marker.key(1).time),1];
      }else{
      value;
      }
      }else{
      value - [rate*timeToFrames(time-inPoint),1];
      }

  • @leribakuradze
    @leribakuradze Год назад

    I get that rule, but I want to answering, how can I use HORIZONTAL titles qualitly as you did vertical?

  • @rayburnside
    @rayburnside 5 лет назад +7

    I've been trying to edit this expression for a horizontal 'ticker tape' effect and can't get it right. Is it a simple edit?

    • @paddyohara3326
      @paddyohara3326 3 года назад +2

      Just swap the x/y values: [rate*timeToFrames(time-marker.key(1).time,0]

  • @marvelmovie
    @marvelmovie 6 лет назад +1

    Is there an easy way to have the scroll stop at the end, so that it could stop if you have logos at the end and not scroll anymore.

  • @squirekev
    @squirekev Год назад +1

    Nice tutorial. Adobe AE (and PPro) really needs an extrapolate kf move option button like other apps. For a mograph app it's sorely lacking.
    I also see you're a 2e fan. Yay! I'm partial to 1e myself.

    • @KyleMahaney
      @KyleMahaney  Год назад

      Thanks! And yeah, honestly I'm a 2e fan mostly because the books are better edited for use at the table and I can scale the system up to be crunch heavy almost like 3e or down to basically a 1e clone depending on the campaign. Always have a 1e DMG at my table though for all of Gygax's weird tables.

  • @ilurakesh1
    @ilurakesh1 5 лет назад

    can you plz provide script for right to left scroll

  • @1k.avantifilms604
    @1k.avantifilms604 5 лет назад

    Great info! so can you please share the "expression position" formula? Thanks for sharing however

  • @SansP3ur
    @SansP3ur 2 года назад

    Understandably this was posted a long time ago, but should anyone run across this in 2022 and have an answer for me nonetheless, I'd be greatly obliged. The error I'm getting is, "after effects error expression dimension must be of dimension 1, not 2".
    Sadly, I have no idea what this means and online searches haven't netted me any insight. Again, thanks in advance.

    • @JBuckeRooRoo
      @JBuckeRooRoo 2 года назад

      I believe you might have your X and Y properties serperated, combine them to one single property

  • @dcamlin
    @dcamlin Год назад

    Still works in January 2024! Thanks

  • @deepdig8502
    @deepdig8502 2 года назад

    For smoothing motions in After Effects you only have to activate Subpixel Smoothing otion and all motions become smooth.

    • @KyleMahaney
      @KyleMahaney  2 года назад

      That blurs the text though. An integer-frame scroll allows the text to remain sharp with no blurred or shimmering artifacts.

    • @deepdig8502
      @deepdig8502 2 года назад

      @@KyleMahaney And how to do integer-frame scroll in After Effects?

    • @KyleMahaney
      @KyleMahaney  2 года назад

      @@deepdig8502 that's literally the point of this video, the script provided moves the text an integer number of pixels per frame.

    • @deepdig8502
      @deepdig8502 2 года назад

      ​@@KyleMahaney Well , that's a big problem for me , i ain't got no idea how to create that kind of script. It seems that you have an idea about how this script should be written.
      I mean a script that will create a smooth movement in the animations with shapes
      Here is about a script fo scrolling credits only

  • @msmayers57
    @msmayers57 7 лет назад +2

    This is great! Is there a way to transform the script to create crawling text (right to left) rather than scrolling?

    • @JoshBayer
      @JoshBayer 6 лет назад

      wondering the same thing

    • @MorganTinney
      @MorganTinney 4 года назад +6

      I know it's too late for you, but for other folks, just switch the x,y values in the final output brackets:
      rate = 2; //value in px/sec.
      if (marker.numKeys > 0){
      if (time > marker.key(1).time){
      value - [rate*timeToFrames(time-marker.key(1).time) , 0];
      }else{
      value;
      }
      }else{
      value - [rate*timeToFrames(time-inPoint) , 0];
      }

    • @DolbroDan
      @DolbroDan 4 года назад +1

      @@MorganTinney hey, thanks Morgan, but how to make go Left to Right... (I'm clueless about Expressions, I tried changing other numbers around to see if I could fluke it...) Can you help me?

    • @MorganTinney
      @MorganTinney 4 года назад

      @@DolbroDan yeah I can help tomorrow. Sorry already in bed.

    • @MorganTinney
      @MorganTinney 4 года назад +1

      @@DolbroDan ope sorry forgot to do this. Here you go if you haven't figured it out:
      rate = 2; //value in px/sec.
      if (marker.numKeys > 0){
      if (time > marker.key(1).time){
      value - [-rate*timeToFrames(time-marker.key(1).time),0];
      }else{
      value;
      }
      }else{
      value - [-rate*timeToFrames(time-inPoint) , 0];
      }

  • @crackintoastmedia
    @crackintoastmedia 6 лет назад

    Hi. I am following your video to produce a roll. when I paste in my text, it does not format/show properly like your it is all together almost as if it is crunched up into 1 page rather than many pages. Any idea what I have done different to you? Thanks

  • @gsd27
    @gsd27 6 лет назад

    Hello Kyle I have input your code into After effects for addressing rolling credits. Can you tell me how I can freeze the last part of the roll rather than it roll out. Thanks

    • @onlyyapple
      @onlyyapple 6 лет назад +1

      probably already fixed it yourself, but i would just put the whole thing in a subcomp and then choose "freeze frame" when you right-click on the layer and then go to "Time".
      greetz

  • @sutuvfx
    @sutuvfx 6 лет назад

    does activate the motion blur help?

  • @CaptureMotionVR
    @CaptureMotionVR 3 года назад

    nice work mate on the credits.📽

  • @BklynFlyer
    @BklynFlyer 4 года назад

    Thanks! This is far better than anything else I've tried. For most of the scrolling I see the text moving wonderfully smoothly However, I still get 1 or 2 "stutters, " even in the rendered result, when scrolling text up a screen with resolution set to UHD with a frame rate of 29.97. I have tried other frame rates and the results are no better. This is on an 2017 iMac Pro that's not running anything else with the rate set to 5. Also, I'm using the latest version of AE and Media Encoder as of 4/25/20.

  • @sherwood1138
    @sherwood1138 6 лет назад

    My value of 1 is too fast. Is there a way I can make it slower?

    • @InfiniteEntendre
      @InfiniteEntendre 6 лет назад

      Yeah. The expression takes fractions so you can always enter a fraction there instead if you want something slower. For example, 0.5 would be 1/2.

  • @Roro-fd5jk
    @Roro-fd5jk 7 лет назад

    Hi Kyle. I have a question. If i have have a lenght imposed by clients (let's say 2min36s) how can i do with to addapt the scrolling perfectly ?
    Thanks.

    • @Roro-fd5jk
      @Roro-fd5jk 7 лет назад

      fyi my raster is 2048x858 pxl. Thanks

    • @KyleMahaney
      @KyleMahaney  7 лет назад

      Start with trying different integer values to get it in the ballpark then play with the size of the text and spacing to get it right.

    • @javi.araguz
      @javi.araguz 6 лет назад

      Hi, Romain. I've exactly the same problem. Could you fix it?

    • @javi.araguz
      @javi.araguz 6 лет назад

      I've a 2K (2048x858) project with a long TIFF in AE with your script (2px) and need an aprox. duration of 120 sec. Until now, the only duration witouth jitter is 240 sec. (at 2px in the script), but is too long! I'm going nuts. Can you help me? U_U

    • @tommieausberg9584
      @tommieausberg9584 5 лет назад

      Yes! This is my exact question! Does anybody have a solution to this?

  • @Yiannis_Stravolaimos
    @Yiannis_Stravolaimos 5 лет назад

    There is a lot of flickering when you play the animation. If you look at the video, you will notice that the flickering is extremely obvious.

    • @KyleMahaney
      @KyleMahaney  5 лет назад

      This video capture is at 60, are you playing back over a 24hz monitoring io?

    • @Yiannis_Stravolaimos
      @Yiannis_Stravolaimos 5 лет назад

      No. I have a 75Hz monitor.

    • @KyleMahaney
      @KyleMahaney  5 лет назад

      That also doesn't divide into 24 or 23.98. Make your project at 25 (not that you should actually do that for most deliverables outside of europe) and it should multiply 3x evenly to display smoothly at 75hz.

    • @Yiannis_Stravolaimos
      @Yiannis_Stravolaimos 5 лет назад

      ​@@KyleMahaneyMonitor Hz don't matter. Everyone should be able to see perfect scrolling credits in every monitor. When you rent a DVD from a DVD store, the scrolling credits are perfect, no matter where you watch them... Monitor is not the problem.

    • @KyleMahaney
      @KyleMahaney  5 лет назад

      You see stutter all the time on dvd when played at 60hz... that's why 24hz output from modern dvd and bluray players is so important along with having a tv capable of some multiple of that. This entire post is about the importance of integer pixel movement timed with the framerate of the video, on a 24hz multiple display (including the projector I played my DCP on) it looks perfectly even. If you read the endcrawl article linked, they talk about making sure you don't have any scaling going on for the deliverable, because scaling can create motion artifacts.
      But monitor hz absolutely does matter, 23.98 or 24fps does not evenly resample into 75hz so you will always have an odd motion cadence. Also some motion blur can help make it display better on mismatched displays.

  • @L1990-z7i
    @L1990-z7i 2 года назад

    Awesome this is really cool! Much appreciated, very usefull

  • @itsSalahAnwar
    @itsSalahAnwar 6 лет назад

    This is just freaking awesome! Thanks man

  • @Rabit666
    @Rabit666 7 лет назад

    Hi, this expresion also work in higer resolution like 4k/6k?

    • @KyleMahaney
      @KyleMahaney  7 лет назад

      Yes, but you'll have to increase the pixel rate obviously since there are more pixels.

  • @UFAndrew11
    @UFAndrew11 7 лет назад +4

    Hi Kyle, in watching the roll example you threw together, it still looked jittery on the playback. Is it because of RUclips's player conversion or something else?

    • @KyleMahaney
      @KyleMahaney  7 лет назад +1

      UFAndrew11 it's because you're viewing it on a 60hz display, pretty sure most RUclips apps don't support 24hz on devices so you're stuck with a pull down where you're still going to have slight jitter. This also is obvious with fast pans.

    • @KyleMahaney
      @KyleMahaney  7 лет назад

      UFAndrew11 come to think of it, my screen capture was also 60hz. Only my video io was running at the native frame rate.

  • @c.s.8824
    @c.s.8824 3 года назад

    Thank you so much!

  • @MerryTech
    @MerryTech 4 года назад

    ... "Like those syndicated TV specials" LOL, Nice!!! :0)

  • @georgehsmith4624
    @georgehsmith4624 6 лет назад

    I get an expression error 1 of 1Please help!!!!

    • @KyleMahaney
      @KyleMahaney  6 лет назад

      You didn't change the expression at all? Did you empty the stock expression before pasting?

    • @georgehsmith4624
      @georgehsmith4624 6 лет назад

      Didn't change it all and yes cleared the stock expression before pasting in

    • @grosbouff
      @grosbouff 6 лет назад

      Have u got your layer position splitted ? I got an error but it disappears if I have my position joined.

  • @Orbikin_Game
    @Orbikin_Game 4 года назад

    thanks bro for the tutorial

  • @kaafmovie
    @kaafmovie 5 лет назад

    Thank you!

  • @FergbyFive
    @FergbyFive 6 лет назад

    Thank you. That was really cool.

  • @bananasunshine7570
    @bananasunshine7570 3 года назад

    You are just the best.

  • @waltermiranda4099
    @waltermiranda4099 6 лет назад +1

    Thank you so much. Nice Tutorial. I suscribe

  • @ekwedorfilms
    @ekwedorfilms 2 года назад

    Brilliant

  • @LeKs4
    @LeKs4 3 года назад

    Hey Kyle! Thanks for this wonderful tutorial. I was wondering now in the 4K era, as the image ratio is roughly 2x bigger than 2K, should we double the 3pixel per second code to 6? Or will it still jitter? Thanks in advance!

    • @KyleMahaney
      @KyleMahaney  2 года назад

      As long as it's an integer number it will be smooth.

  • @paulydaniela1295
    @paulydaniela1295 5 лет назад

    Awesome! thank you!

  • @Yiannis_Stravolaimos
    @Yiannis_Stravolaimos 6 лет назад

    The problem is not the jittery animation. It is the text flickering which is very obvious. I always have to apply Flickering plugins. When the credit titles played on DCP (in the theaters), there is no problem. The problem is the different type of monitors and their different refresh rates in Hz. The solution is not for someone to buy a high quality monitor with a very high refresh rate because the film should be suitable for every average monitor, since most people have a 60Hz one. Even the film festival's judges are watching the films that have been submitted in consumer monitors.... Bottom line is that the credit titles have to look absolutely perfect even when viewed on a less than average monitor.
    I never use expressions because you cannot easy ease the animation when it finishes. So you end up with an abrupt animation stop.

  • @chardarwesh
    @chardarwesh 8 месяцев назад +1

    rate = 10; //value in px/sec.
    if (marker.numKeys >0){
    if (time > marker.key(1).time){
    value - [0,rate*timeToFrames(time-marker.key(1).time)];
    }else{
    value;
    }
    }else{
    value - [0,rate*timeToFrames(time-inPoint)];
    }

  • @dileepanr1704
    @dileepanr1704 2 года назад

    plz sir.... horizontal script will salve my issue...left to right scrolling

  • @polenfilmes
    @polenfilmes 2 месяца назад

    Thank you so much!