Audio Visualizer in After Effects - After Effects Tutorial - No Third-Party Plugin

Поділитися
Вставка
  • Опубліковано 10 лют 2025

КОМЕНТАРІ • 1,9 тис.

  • @avnishparker
    @avnishparker  2 роки тому +17

    🕦If you are facing the expression error, here is the solution: ua-cam.com/video/lv43zOKpwB8/v-deo.html

  • @jelle123123
    @jelle123123 7 років тому +109

    For those interested you can make the clock countdown use.
    make sure clockStart = your song time x sec. So if a songs is 3:40 thats 220 sec
    rate = -1;
    clockStart = 220;
    function padZero(n){
    if (n < 10) return "0" + n else return "" + n
    }
    clockTime = Math.max(clockStart + rate*(time - inPoint),0);
    t = Math.floor(clockTime);
    min = Math.floor((t%3600)/60);
    sec = Math.floor(t%60);
    min + ":" + padZero(sec)

    • @sirmountebank4107
      @sirmountebank4107 6 років тому +2

      I kept getting an error message and googled the problem. found your code and figured "ok I'll just count down then, and looked real close.. "inPoint" didnt have a capitol 'P'... Coding is fun.

    • @MeetFluence
      @MeetFluence 6 років тому

      What the neck that went bouncer to me bro explain as easy as u can plzz

    • @33akachi10
      @33akachi10 6 років тому +2

      I could never get the clock part to work. I keep getting an error with the code and the numbers never show up.

    • @draydyn7063
      @draydyn7063 6 років тому

      they have apps and stuff that do this now. After fx seems to becoming deleted. seriously. what ive seen these days is crazy. simple to use etc. this ones awesome ua-cam.com/video/2wdQTX8QfbI/v-deo.html

    • @gokhanozgan4575
      @gokhanozgan4575 5 років тому +6

      sek = Math.floor(time%60);
      min = Math.floor(time/60);
      if(sek

  • @taketheredpill1452
    @taketheredpill1452 2 роки тому +2

    I'm 51 and this is, without a doubt, the best tutorial I have ever seen. Absolutely amazing. SUB

  • @GoyellSaab
    @GoyellSaab 4 роки тому +8

    Im a DIY musician and you have contributed greatly to my growth. Thank you.

  • @ritasav1439
    @ritasav1439 4 роки тому +43

    Great tutorial! Everything was so easy to understand! The only thing the clock script didn't worked for Ae2020 but I just replaced with anothe one:
    sec = Math.floor(time%60);
    min = Math.floor(time/60);
    if(sec

  • @ACIDBURN6661
    @ACIDBURN6661 7 років тому +47

    For a 5 minute countdown script:
    rate = -1;
    clockStart = 300;
    function padZero(n){
    if (n < 10) return "0" + n else return "" + n
    }
    clockTime = Math.max(clockStart + rate*(time - inPoint),0);
    t = Math.floor(clockTime);
    min = Math.floor((t%3600)/60);
    sec = Math.floor(t%60);
    min + ":" + padZero(sec)
    If you want you can change the "clockstart" variable from 300 seconds to whatever time you would like.

    • @avnishparker
      @avnishparker  7 років тому +4

      +ACIDBURN6661 You already solve it by yourself.. :)

    • @Chimic
      @Chimic 7 років тому +1

      how to add hours? please help me

    • @AslafAhmed15
      @AslafAhmed15 7 років тому +2

      how to make the time go backward?

    • @justfun591
      @justfun591 4 роки тому

      @@Chimic make "clockstart" to 3600

    • @djelasrca8091
      @djelasrca8091 3 роки тому

      why is showing me error

  • @HiveRecords-
    @HiveRecords- Місяць тому

    this video was the tutorial that taught me how to make audio visualisers for the first time and kick started my career! thank you so much I just used the same principles but got more and more creative.

    • @avnishparker
      @avnishparker  Місяць тому

      That’s very kind of you.
      Thank you for watching my tutorials. :)

  • @avnishparker
    @avnishparker  7 років тому +312

    Fun Fact.
    Instead of using CC Light Burst, use CC Radial Fast Blur, It will reduce the time in rendering. :)

    • @avnishparker
      @avnishparker  7 років тому +2

      Yes, But I never reply there. :p

    • @xester3882
      @xester3882 7 років тому

      I have problem using circle..i don't know why. it just oval even i press shift+ contrl

    • @prashantpuri2125
      @prashantpuri2125 7 років тому +1

      name of application usd in this video?

    • @Smjokster
      @Smjokster 7 років тому +1

      +Prashant Puri The application that was used was Adobe After Effects if that's what your asking.

    • @prashantpuri2125
      @prashantpuri2125 7 років тому

      +smjokster
      Thanks

  • @cringemicedevine4129
    @cringemicedevine4129 5 років тому +1

    i never thought a robotic voice could sound so caring and considerate in teaching a tutorial, because there were points where I geniuely forgot about that and just thought it was an old teacher explaining everything in the background lul

  • @SIRU_Thalikulam
    @SIRU_Thalikulam 6 років тому +3

    Your tutorials are just awesome - well explained. I loved a comment " we need to rename the layer, caz we are organized people"

  • @herbus6330
    @herbus6330 4 роки тому +143

    Good script 2020/2021 :
    rate = 1;
    clockStart = 0;
    function padZero(n){
    return (n < 10 ? "0" : "") + n;
    }
    clockTime = Math.max(clockStart + rate*
    (time - inPoint),0);
    t = Math.floor(clockTime);
    min = Math.floor((t%3600)/60);
    sec = Math.floor(t%60);
    min + ":" + padZero(sec)

    •  4 роки тому +2

      Thanks man!

    • @MrTwin100
      @MrTwin100 4 роки тому +2

      mine is going in minutes do you happen to have a fix?

    • @amitmoorjani123
      @amitmoorjani123 4 роки тому +1

      Thanks a lot !!!

    • @shaswatgaur5954
      @shaswatgaur5954 4 роки тому

      not working

    • @nnuar1
      @nnuar1 4 роки тому

      thanks man!

  • @ardalanea
    @ardalanea 3 роки тому

    One of the best 14 minutes that I spent in my life by watching this tutorial 😁😁❤️❤️

  • @KevVs
    @KevVs 4 роки тому +5

    This guys voice is perfect😂😍😍

    • @theshadowl4
      @theshadowl4 4 роки тому

      Yea its almost as if he's a robot

    • @theshadowl4
      @theshadowl4 4 роки тому

      @CasamTDA is cutie - Music wow really ???

  • @loba1337
    @loba1337 6 років тому

    I needed 2 hours for this.
    Your voice has been very sympathetic over the longer time.
    Nice tutorial!

  • @oa6551
    @oa6551 7 років тому +7

    This has to be one of the best tutorials I have EVER SEEN. Great going Avnish!

  • @jpalma_official
    @jpalma_official 6 років тому

    awesome mate! finally I´ve found how to create these kind of simple videos for music, thanks

  • @bestdancemoves
    @bestdancemoves 4 роки тому +23

    this is awesome!!! Thank you Avnish Parker.
    Stay safe and have a wonderful day ❤👏👏❤

  • @letaboy4936
    @letaboy4936 2 роки тому +1

    wow best tutorial thank you

  • @cruzumusic
    @cruzumusic 7 років тому +7

    Great tutorial. Thank you! Only I am having a problem: My audio file has been completely changed: Tempo goes up and down and sound changes continuously. Please help me solve this, thanks!

  • @telum2265
    @telum2265 3 роки тому +1

    The best tutorial I've seen so far.

  • @Modding_
    @Modding_ 3 роки тому +18

    Timer Script for Newer version of AfterEffects:
    rate = 1;
    clockStart = 0;
    function padZero(n){
    if (n < 10) return "0" + n
    return "" + n
    }
    clockTime = Math.max(clockStart + rate*(time - inPoint),0);
    t = Math.floor(clockTime);
    min = Math.floor((t%3600)/60);
    sec = Math.floor(t%60);
    min + ":" + padZero(sec)

    • @sacredsoulfulserenity2573
      @sacredsoulfulserenity2573 2 роки тому

      This was incredibly helpful! Thank you!

    • @castministries
      @castministries 2 роки тому

      I just pasted in the newer version script, thank you for that, that was so helpful. My issue now is it's not playing the countdown backwards. It's counting up to 5mins instead of down to '0'. can you tell me how to fix this?

    • @Modding_
      @Modding_ 2 роки тому

      @@castministries set "clockStart" to the begining [in seconds] and set "rate" to -1
      I dont know if it works, but it fells right.

  • @naveenbhatiamusic
    @naveenbhatiamusic 3 роки тому

    best tutorial for audio visualizers

  • @Irsamudra
    @Irsamudra 5 років тому +10

    That was EPIC! Keep create and share for your inspiration for us! :))

  • @terryredherring
    @terryredherring 4 роки тому

    Thank you for this video homie. Super informative and easy to follow!

  • @jasonobi
    @jasonobi 4 роки тому +23

    "Let's rename this text layer as "Time" because we are organized people."

  • @thepro5926
    @thepro5926 2 роки тому

    This is what the audio spectrum i wanted to make for my owen😍😍🙏🏻

  • @iamjessecollins
    @iamjessecollins 6 років тому

    Great video man! Very easy to follow and I learned a shit ton. Keep making these videos!

  • @Craftlas_Aartigupta
    @Craftlas_Aartigupta 7 років тому +4

    Again a superb video.... especially editing part

  • @Meekismwisdom
    @Meekismwisdom 4 роки тому

    My audio spectrum wave affects my audio and gives it affects. Do you have videos on how to prevent this ?

  • @5webcadiz
    @5webcadiz 3 роки тому +7

    give a error expresion in the clock function padZero(n){
    if (n < 10) return "0" + n else return "" + n unexpected token else can you help me with this please. thanks for all your videos.

  • @nevdo_music
    @nevdo_music 6 років тому

    Thanks for this tutorial! Subscribed!

  • @jenhmusic3768
    @jenhmusic3768 7 років тому +15

    i was always laughing my ass off when he was saying " Cool " XD

  • @FeighC
    @FeighC 3 роки тому +2

    I'm astounded by how simple this is. Thank you!

  • @FourSteelCZ
    @FourSteelCZ 7 років тому +9

    i love u. finally i can make this! Thanks Avnish

    • @avnishparker
      @avnishparker  7 років тому +2

      +FourSteelCz Your always welcome.. :)

  • @NiharShembekar
    @NiharShembekar 5 років тому +1

    One word... Thank you! 🙂🙏

  • @Zakkrogenix
    @Zakkrogenix 7 років тому +4

    Now that, was a dope audio spectrum. Nice!

    • @avnishparker
      @avnishparker  7 років тому

      +BorderWOLF Thank you.. :)

    • @Zakkrogenix
      @Zakkrogenix 7 років тому +1

      Hey Avnish? you know how some youtubers will like have a pop up animation to tell people to check out there so and so like Instagram or Twitter. I wanted to know if you could do a tutorial like that because I really want animations in my vids that like pop up in the video telling people to go check out my social pages. thx! :D

    • @Zakkrogenix
      @Zakkrogenix 7 років тому +1

      whoops! nvm, I rechecked your channel and you did two vids on it. :P

    • @avnishparker
      @avnishparker  7 років тому

      +BorderWOLF lol.. :p

  •  3 роки тому +1

    ne kadar teşekkür etsem azdır
    I can't thank you enough

  • @DJSkandalous
    @DJSkandalous 6 років тому +10

    Cool!

  • @BehindTheHorror
    @BehindTheHorror 5 років тому

    Im Learning A LOT with your videos thank you so much!!!

  • @GamingHub_77
    @GamingHub_77 7 років тому +19

    I was waiting for this for so long heck time thx my friend avnish

    • @avnishparker
      @avnishparker  7 років тому +2

      Sorry for the delay, Just got time to post it. :)

    • @SimplyLegend
      @SimplyLegend 7 років тому +2

      CAn u make a tutorial for bounce on beats please it would be helpful if u

    • @avnishparker
      @avnishparker  7 років тому +2

      +Durgesh Patiley Yes sure,
      I'll create a Tutorial on it..
      Stay Tuned.. :)

    • @CinecastSolutions
      @CinecastSolutions 7 років тому +1

      hi mask 3 is not coming after pre compose but i can see under audio reactor, plz tell me what is wrong i did

    • @abcdsports1686
      @abcdsports1686 7 років тому

      +Avnish Parker how you edit background voice

  • @itsrubitero
    @itsrubitero 6 років тому

    how do you render the project? i'm new to this kind of thing.

  • @MusicalChannelSubs
    @MusicalChannelSubs 7 років тому +4

    This is very very beautiful! 😍

  • @LostInVoid13
    @LostInVoid13 4 роки тому +1

    This dude sounds like in documentary. love it!!

  • @CraigMurleyElasticstudio
    @CraigMurleyElasticstudio 5 років тому +3

    Wow! This works beautifully!
    Thank you!!!

  • @rishabhnayyar7421
    @rishabhnayyar7421 4 роки тому +1

    Best video for Circular Audiogram

  • @wahabseven
    @wahabseven 4 роки тому +7

    hello every one if you have the clock script problem >>?
    go to Project Settings > Expressions, use the Legacy ExtendScript engine
    thanks me later

    • @wahabseven
      @wahabseven 4 роки тому

      Aidan Hyland I searched for the answer 24 hour maybe you can find fast because of that I called it’s ok don’t thank me

    • @wahabseven
      @wahabseven 4 роки тому

      Aidan Hyland at that time comment was not pinned

    • @santhakumarigovindaraj
      @santhakumarigovindaraj 4 роки тому +1

      ur awesome thanks bro but it's ordinary font and doesn't look like that font shown in this video
      update: I was changed the font that I want

  • @provost3895
    @provost3895 4 роки тому

    Awesome Video . No backlashes in the form of paying for plugins or anything. Thanks alot mate.

  • @zman360auz
    @zman360auz 5 років тому +10

    This was dope, can you make it so the text doesnt have the effect?

    • @TheUltamatium
      @TheUltamatium 5 років тому +2

      yes put your text effect above all other effects on the effects panel and it will not apply anything that is underneath it only the effects above it.

    • @nobelshow2201
      @nobelshow2201 4 роки тому

      Simple

  • @unTLDR
    @unTLDR 3 роки тому

    Good video, only tip I would offer is to make sure that all of your clicks are on screen e.g. 01:21 - Adding a Background

  • @KZiakas
    @KZiakas 6 років тому +3

    Great tutorial! I was always wondering how sound visualization is done! Just one question. At some point you mention that it's possible to synch the background image with the sound so it shakes according to the rhythm. You say there's another video tutorial for that but I couldn't find it! Anyway thanks for the useful information you post here :)

  • @AaronLoving
    @AaronLoving 5 років тому +1

    Your voice is perfect, if there's anybody I can trust to know how to do this it's a robot

  • @idiotinium
    @idiotinium 7 років тому +24

    The tts had a stroke at 7:00 when trying to say stroke XD

  • @onlyme7904
    @onlyme7904 4 роки тому +1

    I made 2 of these and uploaded them to my channel thanks for the help dude

  • @johnpaulcastillo8403
    @johnpaulcastillo8403 5 років тому +5

    Hi, I did the audio visualizer and I love it but I'm having a hard time rendering the project because it is taking too long to render even with AME. I need help with that.

  • @snowwhitegaming1926
    @snowwhitegaming1926 2 роки тому

    Yay ! I have done it, I love your tutorials, I will share the channel

  • @deathcoredevoter
    @deathcoredevoter 4 роки тому +3

    2:06 so, where's the link? You didn't even show the link on the description box, lol. I've been searching on it, but i still don't get it.

  • @wolvarenmestryy4253
    @wolvarenmestryy4253 7 років тому

    اشكرك كثير و انا شخص معجب كبير بفديوتك 🌹🌸

  • @Dodzolive
    @Dodzolive 4 роки тому +3

    Is there a way to make to timer go up to an hour when you hit an hour in your audio , I am doing this for a podcast

    • @MrKawasajin
      @MrKawasajin 4 роки тому

      sec = Math.floor(time%60);
      min = Math.floor(time/60);
      if(sec

  • @Ana0444
    @Ana0444 2 роки тому

    Hey man thanks a lot. I was really overwheld and confused but now it all makes sense. Thank you.

  • @caronite940
    @caronite940 7 років тому +5

    At 7:41 couldn't you also put a circular logo in the middle instead of the timer?

    • @avnishparker
      @avnishparker  7 років тому +5

      Yes, You can put the Logo, and place the timer anywhere you want. :)
      All your choice, I am just showing you the way. :)

    • @Claudia_De_Lioncourt
      @Claudia_De_Lioncourt 5 місяців тому

      @@avnishparker what are the best setting to use to render this and which softwares are best to use for export for the render? great video but stuck on the rendering part?

  • @ahmadjihan3189
    @ahmadjihan3189 7 років тому

    i was so thankful that i found your channel on youtube, thank you very much

  • @Harshadjejurkar
    @Harshadjejurkar 7 років тому +5

    i cant understand how u edit text ns ad script nd copied, how can u open script ..
    alt+source = what the next step ?

  • @hassan_a9
    @hassan_a9 2 роки тому +3

    If you have a song longer than 10 min, it is cool to add a "0" at the front of the minutes in case the number of minutes are smaller than 10. To do that use this script:
    rate = 1;
    clockStart = 0;
    function padZero(n){
    if (n < 10) return "0" + n;
    else return "" + n;
    }
    clockTime = Math.max(clockStart + rate*(time - inPoint),0);
    t = Math.floor(clockTime);
    min = padZero(Math.floor((t%3600)/60));
    sec = Math.floor(t%60);
    min + ":" + padZero(sec)

  • @MusicLyrics-ef3ol
    @MusicLyrics-ef3ol 7 місяців тому

    your amazing you explained everything in detail even the expression error Good job!

  • @amshumanmishra8765
    @amshumanmishra8765 5 років тому +3

    When I add the clock script, it shows an error!! Please send me the correct one....

  • @products-explorer
    @products-explorer 3 роки тому

    very nice, I made a similar visualizer and learnt new things.

  • @buoyantsbeat.b.m.p8807
    @buoyantsbeat.b.m.p8807 6 років тому +3

    I'm having an error in my time. It's saying undefined. Like this 0:undefined

  • @go0dmusic-musicforcontentc377
    @go0dmusic-musicforcontentc377 4 роки тому

    Can't believe I finally managed to create an audio spectrum. Thank you!
    Qool. 😆

  • @CptSlow89
    @CptSlow89 5 років тому +4

    8:30 SELECT MOVE TOOL IS HOLDING V ON KEYBOARD

  • @prashantchalke
    @prashantchalke 7 років тому

    Excellent. Sir. I know the time how much spent to making perfect one... Respect. Best wishes.

  • @PlayedboiCartier
    @PlayedboiCartier 4 роки тому +4

    When the audio spectrum moves the edges gets cut out by a square box

    • @4trackbeats650
      @4trackbeats650 4 роки тому +1

      yeah I just noticed that with me😒

    • @PlayedboiCartier
      @PlayedboiCartier 4 роки тому +1

      Do you know a fix?

    • @4trackbeats650
      @4trackbeats650 4 роки тому

      @@PlayedboiCartier I wish I did... I'm trying to figure out how to upload it on instagram

    • @4trackbeats650
      @4trackbeats650 4 роки тому

      @@PlayedboiCartier also there's a problem with playing it.. everything seems normal but then it plays for a little bit then stops mid way through.. and just repeats

    • @uphor-iax656
      @uphor-iax656 4 роки тому

      I know a fix. Click on the solid, then press M. Change the mask to None. After that, put the Audio Spectrum on the solid. You should see an outline of a rectangle, not a circle.

  • @eternyte688
    @eternyte688 6 років тому

    NO I CAN CREATE MY NIGHTCORE WITH THE LESSON I'VE LEARNED FROM U Thanks alot!

  • @OmkarTagadeBelieveinProfession
    @OmkarTagadeBelieveinProfession 7 років тому +24

    Sir will you make the video on - How to make video like (Chainamokers - Closer) lyrical video... Hello Subscribers please give reply to my comment????

    • @avnishparker
      @avnishparker  7 років тому +5

      +Omkar Tagade #Believe in Profession# I'll take a look at the video, and try to measure a short tutorial on it,
      Stay Tuned.. :)

    • @OmkarTagadeBelieveinProfession
      @OmkarTagadeBelieveinProfession 7 років тому

      Avnish Parker ohh Tahnks🙏

    • @lendennews_Business30055
      @lendennews_Business30055 7 років тому +2

      ALL YOU NEED IS AE ND PREMIERE PRO FOR VIDEOS LIKE THAT.

    • @liusjuliano5694
      @liusjuliano5694 7 років тому

      F Yeah, weee wantt it :)

    • @jarrod7047
      @jarrod7047 7 років тому

      use a magic marker and write your lyrics on a white sheet of paper and film yourself holding the paper and advancing the pages in sync with the song. key out the white background and all you have left is the lyrics you wrote over any other footage you want. done

  • @KuyaRudz
    @KuyaRudz 5 років тому

    I will definitely watch all your tutorials ^_^ thank you!

  • @SlyyShadow
    @SlyyShadow 7 років тому +6

    The text doesn't work...

    • @avnishparker
      @avnishparker  7 років тому +1

      What?
      You mean the Script?
      Please make sure you are copying the Script from the Text file properly. :)

    • @SlyyShadow
      @SlyyShadow 7 років тому +2

      It's okay. Here's my new video that I made with what you taught me!
      ua-cam.com/video/qBHptJbH6XI/v-deo.html

  • @Argustrevor
    @Argustrevor 4 роки тому +2

    if a problem of expression occurs when adding the timer: try this code instead:
    rate = 1;
    clockStart = 0;
    function padZero(n){
    return (n < 10 ? "0" : "") + n;
    }
    clockTime = Math.max(clockStart + rate*(time - inPoint),0);
    t = Math.floor(clockTime);
    min = Math.floor((t%3600)/60);
    sec = Math.floor(t%60);
    min + ":" + padZero(sec)

  • @LuarGFX
    @LuarGFX 7 років тому +9

    Ready template PLS BRO

    • @avnishparker
      @avnishparker  7 років тому +5

      +Luar GFX I am sorry, but I don't share any Templates.. :(

    • @lulprumpt4696
      @lulprumpt4696 7 років тому +5

      just make it xD

    • @paolocordero5301
      @paolocordero5301 7 років тому

      Avnish Parker pls

    • @CorporalEwok
      @CorporalEwok 7 років тому +8

      Guys hes a learning channel not a template one. I followed along and was able to do it in about 15 minutes, just keep trying you will get your head around it and it also means that next time you might be able to do it by yourself!

  • @mxntal_
    @mxntal_ 6 років тому

    i dont do any of this, but its pretty interesting that you can do so much with 1 program!

  • @pubgdelisi7643
    @pubgdelisi7643 6 років тому +4

    türk olanlar

  • @harshshivhare6103
    @harshshivhare6103 5 років тому

    I am finally make this thanks sir your tutorial is very helpfull.....

  • @presidentebolsonaro4351
    @presidentebolsonaro4351 6 років тому

    😱😱😱😱 vc é o maior editor de vídeo do mundo

  • @MojicaRoundtable
    @MojicaRoundtable 4 роки тому

    Thank you for sharing. I learned how to do this in 2016 and hadn't done one in a while so this was great for me to refresh myself. Peace.

  • @morazzuk2269
    @morazzuk2269 9 місяців тому

    long time ago but still working so good thnx alot

  • @gamingdot4448
    @gamingdot4448 2 роки тому

    you are the smartest bro!
    you got A NEW SUBSCRIBER

  • @djmaxpaul
    @djmaxpaul 4 роки тому

    Im using 2 AE software. AE CS 5 and AE 2020. I don't have any problems with Text Code in AE cs5 but AE 2020 tells me there is a problem and don't want to use it but Thank U Gabe N. Go to Project Settings > Expressions -> Legacy ExtendScript engine works perfect. :D.

  • @netone681
    @netone681 7 років тому

    Mr. Parker you are amazing, Cheers from NYC

  • @nightcoreboy530
    @nightcoreboy530 6 років тому

    Thanks you A LOT
    You saved My Entire Live

  • @ahmedsafy9075
    @ahmedsafy9075 7 років тому

    You are the best one till this moment , i Appreciate your efforts .👍👍👍

  • @nightcore3035
    @nightcore3035 6 років тому

    Tnx sooo much ur my hero for my new video tnx ur my the best teacher ever

  • @manithfernando3718
    @manithfernando3718 4 роки тому

    These tutorials are awesome. Really helpful. Thanks a lot Avnish Parker. Keep them coming. Much love

  • @premkumar-zp7gs
    @premkumar-zp7gs 3 роки тому

    as usual you make things look so simple

  • @tahaminotan9637
    @tahaminotan9637 2 роки тому

    thank you for excellent teaching ❤

  • @Aphorism5
    @Aphorism5 6 років тому

    Thank you Avnish Parker! With your tutorials I created a great music logo. However, with he light rays the render time was over 4 hours! geez... keep up the great work! This channel is invaluable.

    • @avnishparker
      @avnishparker  6 років тому

      Instead of using Light Rays, use CC Radial Blur, it will make the Render faster. :)

    • @Aphorism5
      @Aphorism5 6 років тому

      @@avnishparker will experiment with it.... check it out when you get a chance. Thanks again.

  • @JI-vy1mf
    @JI-vy1mf 5 років тому

    Still the best tutorial 👍👍

  • @axetrac10
    @axetrac10 6 років тому

    Thank you Avnish. Fantastic tutorial :)

  • @sajithsp8515
    @sajithsp8515 6 років тому

    I see, you are smooth as ever

  • @Emerge.Creations
    @Emerge.Creations Рік тому

    Learned a lot from you. Props!

  • @LyonBrave
    @LyonBrave 4 роки тому

    THIS IS VERY NICE

  • @kamimwahd7702
    @kamimwahd7702 4 роки тому

    loved this. everything is clear, love the zoom in’s, love the auto voice, makes things easy to understand, loved all the times the keys were put on to show exactly what to press. and absolutely love how u explain things ❤️

    • @denissantos1151
      @denissantos1151 4 роки тому

      salmaaa dracosmirk ;p Eu não entendi foi nada cara

    • @wise_owl13
      @wise_owl13 Рік тому

      @ 8:05 how to get the text file on Mac?

  • @Djmaxofficial
    @Djmaxofficial 6 років тому

    The best tutorial that ive ever see on youtube