Adobe After Effects: Epic Colored Glitch Text Tutorial

Поделиться
HTML-код
  • Опубликовано: 3 июл 2023
  • ☕ Project file: www.buymeacoffee.com/arsacre/...
    More dope stuff: www.buymeacoffee.com/arsacre/...
    ▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪
    🍃Envato Elements 48 hours ⚡ flash sale:
    Lyrics: 1.envato.market/1rReea
    Social Assets: 1.envato.market/Jz4brr
    Sub: 1.envato.market/zNNGQO
    1.envato.market/c/4184992/177...
    ▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪
    If you're confused and can't seem to get the hang of After Effects, I wrote this weird approach to learning, may help you.
    arsacre.blogspot.com/2023/07/...
    How to animate a Live wallpaper in After Effects (Easy to follow steps):
    arsacre.blogspot.com/2023/09/...
    ▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪
    Today I bring to you a dope text effect, I was experimenting with some animation for tutorial and ended up making this cool effect, I think it's pretty convincing already :D also pretty easy to create look complicated but not.
    I've joined the youtube's Epic, Insane, Blown away title cult btw.
    Share the video if you can, channel won't go up until I drop lyric video tutorials :'D
    ▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪
    External 3rd party plugins are not necessary for this you can use default plugins but Adobe's default plugins are sometime (sometime) simply incompetent.
    ➕ So here's some plug-ins you can download
    1. [FREE] VC Color Vibrance: www.videocopilot.net/tutorial...
    2. [FREE]Displacer Pro : www.plugineverything.com/disp...
    3. [PAID]Deep Glow: www.plugineverything.com/deep...
    ▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪
    Connect:
    Instagram: / arsacre5
    Facebook: / arsacrearts
    ▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪
    Track: Max Brhon - Illusion [NCS Release]
    Music provided by NoCopyrightSounds.
    • • Max Brhon - Illusion [...
    Free Download / Stream: ncs.io/Ilussion
    TAGS:
    lyrics edit, after effects tutorial, lyric video, 3d camera after effects, typography aftere ffects, kinetic typography after effects tutorial, lyric video after effects, after effects typography
    #textanimation #aftereffects #arsacre #glitch #tech
  • КиноКино

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

  • @Arsacre
    @Arsacre  Год назад +7

    Inertia expressions to copy
    //POSITION//
    amp = .4;
    freq = 5.0;
    decay = 15.0;
    n = 0;
    time_max = 4;
    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 && t < time_max){
    v = velocityAtTime(key(n).time - thisComp.frameDuration/10);
    value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t);
    }else{value}
    //SCALE//
    amp = .1;
    freq = 5.0;
    decay = 25.0;
    n = 0;
    time_max = 4;
    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 && t < time_max){
    v = velocityAtTime(key(n).time - thisComp.frameDuration/10);
    value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t);
    }else{value}

  • @saintrhythmbeats
    @saintrhythmbeats Год назад +7

    Most of my work right now is inspired by your creativeness......No other tutorial channel on youtube is as lucid as yours bro...🔥🔥🔥🔥

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

      So glad to know!
      Wish more luck to you :)

  • @bunny.h6490
    @bunny.h6490 3 месяца назад +1

    THANK YOU!!

    • @Arsacre
      @Arsacre  3 месяца назад +1

      You're welcome :)

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

    YOOOO?????! Why is this actually insane? I've seen some of your tutorials in the past but def subbing for this one

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

      Hey thanks a lot!
      This one worked out well compared to a couple last ones :D

  • @Mr.Manipulator666
    @Mr.Manipulator666 Год назад +1

    This is sooo good! Thank you!

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

      You're welcome :D

  • @naofumi4463
    @naofumi4463 Год назад +3

    Another sick tutorial as always good for tiktok edits. Thanks man

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

      Yep it works really good on vertical edits :D

  • @woot786
    @woot786 11 месяцев назад +1

    DOPE ♥

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

    u are so gooddd

  • @not.racist_
    @not.racist_ 11 месяцев назад

    HOLYYYY I WAS LOOKING FOR SOMETHING LIKE THIS !!!!!!!!!!!!!!!!!!!!!
    THANK YOU SO MUCH

    • @Arsacre
      @Arsacre  11 месяцев назад +1

      Most welcome ;D

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

    Man u are awesome

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

    Good very nice ❤😊

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

    game changer!!

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

    Cool! But how did you do the Arsacre effect at the end? that is pretty dope as well.

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

      Thank you, it was just opacity keyframes with the displacement map placed directly on the text layer and some blinking blur!

  • @elitelofi310
    @elitelofi310 2 дня назад

    This code will work for mac os also

    • @Arsacre
      @Arsacre  День назад

      It works regardless of os!

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

    How did you mix the audio? some whooshes at the end... or..

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

      Just chopped up the audio with matching vocal parts and put an impact fx towards the end!

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

      @@Arsacre ty

  • @desigr.__
    @desigr.__ Год назад

    Give me this version of ae plz

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

      This is an old version CC2015

  • @cedricmlisho1397
    @cedricmlisho1397 3 месяца назад

    bruh i have copied the but mine is still not bouncing

  • @elitelofi310
    @elitelofi310 18 часов назад

    Bro it is not bouncing bro