After Effects Nightcore Style Lyric Video - TUTORIAL

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

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

  • @Arsacre
    @Arsacre  2 года назад +22

    Guys, listen.. the software name is: After Effects
    *Please copy the code carefully : ) if anything is missed it won't work*
    *Expression codes:*
    //Text Bounce//
    freq = 1;
    decay = 5;
    duration = 0.10;
    retard = textIndex*thisComp.frameDuration*2;
    t = time - (inPoint + retard);
    startVal = [100,100,100];endVal = [0,0,0];
    if (t < duration){
    linear(t,0,duration,startVal,endVal);
    }else{
    amp = (endVal - startVal)/duration;
    w = freq*Math.PI*2;
    endVal + amp*(Math.sin((t-duration)*w)/Math.exp(decay*(t-duration))/w);}
    //Inertia Bounce//
    n = 0;
    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 < 1){
    v = velocityAtTime(key(n).time - thisComp.frameDuration/10);
    amp = .05;
    freq = 4.0;
    decay = 8.0;
    value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t);
    }else{
    value;
    }

  • @NightcoreZodiac
    @NightcoreZodiac 2 года назад +34

    found you from Jim Yosef , dope work , keep up your good work and inspire everyone!

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

      Oh thanks a lot 🙏

    • @nightcoregalaxy
      @nightcoregalaxy 2 года назад +5

      How about Zodiac’s style? 🤣

    • @moviesfightscenes9086
      @moviesfightscenes9086 2 года назад +2

      next time i will give him one of your videos and ask him if he can edit nightcore with animated pictures like you lol

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

      @@moviesfightscenes9086 Yo good news is I asked him to do animated picture lyrics, he said about posting a tutorial soon!!

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

    I forgot to mention, after creating audio amplitude layer,
    don't forget to delete the *Hi-Low Pass* filter effect from audio, otherwise the song will sound muffled

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

      How to delete it ?

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

      @@SoraGamingLive click to select it and press delete button on keyboard

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

    Thank you very much for this tutorial I was looking for this kind of tutorial everywhere past few months

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

      You're welcome, hope this will help : )

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

    My dream finally came true, thank you :D

    • @Arsacre
      @Arsacre  2 года назад +1

      Yeah hahah do try it!

  • @AladdinGaming313
    @AladdinGaming313 2 года назад +2

    That beat clash was mind blowing
    This is so sick man 🔥🔥

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

      Thank you very much : )

  • @Nobuyukidayo
    @Nobuyukidayo 2 года назад +2

    omg this is what i need, thanks dude

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

      you're welcome : )

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

    youre the only one who have done a good tutorial on this

  • @rammi66
    @rammi66 Год назад +4

    I like the way you made this video... it will really help those who want to make nightcore... you are very cool :)

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

      Thank you!
      Glad it helped :)

  • @Vidtastic.
    @Vidtastic. 2 года назад +1

    Thanks bro ! THIS one is cool yet aesthetic ❤.

    • @Arsacre
      @Arsacre  2 года назад +1

      The background image does the wonders basically ; D

    • @Vidtastic.
      @Vidtastic. 2 года назад

      @@Arsacre Yeah those eyes 👀

  • @iklevi5678
    @iklevi5678 2 года назад +1

    Thanks waiting for this

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

    You are worthy of million Subscriber's don't give up fight😎

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

      Thank you! hope upcoming videos do well this year : )

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

    Amazing channel, luv u for tutorials

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

      Thank you : )

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

    i don't see a lot of keyframes after creating the audio amplitude layer idk why

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

    If make a tutorial that how we can animate digital paint that would be much appreciated.thanks for this man you are my legend.

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

      Yes I am recording a tutorial on that in fact.
      Topic will be slightly different, we'll animate anime image with lyrics over : D

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

      @@Arsacre waiting for it. thanks for listening to me.

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

    Hello, great tutorial however I am having some issues with speed of the lyrics on fast songs, they are just too slow and I don't know how to speed them up. Is there a solution to this?

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

      Hi, for that you have to alter the expression code and change the "Based On" setting to WORDS instead of CHARACTERS
      see here what it looks like>> ruclips.net/video/ozTLHS8wmtA/видео.html
      Copy paste this altered code:
      //Text Bounce//
      freq = 1;
      decay = 9;
      duration = 0.06;
      retard = textIndex*thisComp.frameDuration;
      t = time - (inPoint + retard);
      startVal = [100,100,100];endVal = [0,0,0];
      if (t < duration){
      linear(t,0,duration,startVal,endVal);
      }else{
      amp = (endVal - startVal)/duration;
      w = freq*Math.PI*2;
      endVal + amp*(Math.sin((t-duration)*w)/Math.exp(decay*(t-duration))/w);}

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

      @@Arsacre Thank you so much this helped a lot, definitely earned a sub!!

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

    I can't remove Flash from the beginning and eye grow I can't complete it and I couldn't make glow to the end of video

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

    Bro thank you! What software are you using? App..

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

      I'm using Adobe After Effects : )

  • @middleworldentertainment333
    @middleworldentertainment333 2 года назад +1

    Very nice 👍🏻

  • @XionNightcore
    @XionNightcore 11 месяцев назад

    I want start making Nightcore❤

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

      Good luck with that ✌️

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

    Thank You 😊

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

      You're welcome!

  • @ApeakOfficial
    @ApeakOfficial 8 месяцев назад

    Where is codes or expression i can't find it on discripition and comments someone help

    • @Arsacre
      @Arsacre  8 месяцев назад

      Hey, that is in the pinned comment!

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

    sir if we format songs into nightcore lyrics with copyright claim can we monetise our channel at the end? plz tell me

    • @Arsacre
      @Arsacre  2 года назад +1

      I've no idea on this as I've never tried, but I've seen it on some channels these days identifying algorithm is so strong that it can recognize even if it the song is pitched up or down : D

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

    Where are the expressions we need to use for the tutorial?

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

      see my comment below

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

    yor forger xd

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

    Can I monetize nightcore videos on RUclips? Let's say that I didn't get copyright strikes, can I still earn if I manage to reach the requirements?

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

      I'm not sure, but if you don't get copyright notices then you should be able to monetize

  • @AniAni-ko7ex
    @AniAni-ko7ex Год назад

    which app/software is this???

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

      After effects
      Mentioned in the title and description :)

  • @Yuri_chanfromkorea
    @Yuri_chanfromkorea 10 месяцев назад

    How do you do that with phone?

    • @Arsacre
      @Arsacre  10 месяцев назад

      No idea friend.. maybe try alight motion app

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

    please mention software that you're using

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

      I mentioned
      It's After Effects

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

      @Arsacre what can I use it on, like phones, laptop, ipad, or computer?

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

    How can i fasten the speed of the lyrics.

    • @Arsacre
      @Arsacre  2 года назад +1

      Put the keyframes closer for fast IN and OUT animation!
      [Just in case]
      if you sped up the song to change it's pitch, and lyrics are not syncing, try pre-composing all the text and press CTRL+ALT+T and bring time keyframes closer until it's fast to catch up!

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

      @@Arsacre Thanks alot😎😎

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

      Hey good job.. Please mention software name also

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

      I mentioned
      It's After Effects

  • @latmedia-pruebas
    @latmedia-pruebas Год назад

    Preset?

  • @ApeakOfficial
    @ApeakOfficial 8 месяцев назад

    I found the expression code guys on the first comment section just click on read more Thanks Ali

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

    DUDE WHERE IS THE CODES

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

      Check the comments

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

      @@Arsacre u are awesome dude thx....

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

    HOW TF ARE YOU SO UNDERRATED. YOU MAKE ONE OF THE BEST CONTENT. YOU'LL BLOW UP SOON 🤌🏻🤌🏻💗💗
    THANKS FOR THESE TUTS. HELPED ME TONS!!

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

      Thank you! glad tuts are helping : )
      Hoping to see when this channel goes up 😄

  • @czyb5537
    @czyb5537 6 месяцев назад

    Expression codes:
    //Text Bounce//
    freq = 1;
    decay = 5;
    duration = 0.10;
    retard = textIndex*thisComp.frameDuration*2;
    t = time - (inPoint + retard);
    startVal = [100,100,100];endVal = [0,0,0];
    if (t < duration){
    linear(t,0,duration,startVal,endVal);
    }else{
    amp = (endVal - startVal)/duration;
    w = freq*Math.PI*2;
    endVal + amp*(Math.sin((t-duration)*w)/Math.exp(decay*(t-duration))/w);}

  • @czyb5537
    @czyb5537 6 месяцев назад

    //Inertia Bounce//
    n = 0;
    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 < 1){
    v = velocityAtTime(key(n).time - thisComp.frameDuration/10);
    amp = .05;
    freq = 4.0;
    decay = 8.0;
    value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t);
    }else{
    value;
    }