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)
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.
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
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
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.
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.
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
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!
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)
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?
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.
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
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 :)
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.
@@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?
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)
@@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
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.
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
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)
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!
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.
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.
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 ❤️
🕦If you are facing the expression error, here is the solution: ua-cam.com/video/lv43zOKpwB8/v-deo.html
thanks
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)
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.
What the neck that went bouncer to me bro explain as easy as u can plzz
I could never get the clock part to work. I keep getting an error with the code and the numbers never show up.
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
sek = Math.floor(time%60);
min = Math.floor(time/60);
if(sek
I'm 51 and this is, without a doubt, the best tutorial I have ever seen. Absolutely amazing. SUB
Glad it was helpful!
Im a DIY musician and you have contributed greatly to my growth. Thank you.
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
thanks .
awesome
@@mohammadrostami4682 can u explain it to me, it didn't work! ;(
it works now..thank you :D
THANNNNNKKKKKSSSS SOOOOO MUCH :D
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.
+ACIDBURN6661 You already solve it by yourself.. :)
how to add hours? please help me
how to make the time go backward?
@@Chimic make "clockstart" to 3600
why is showing me error
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.
That’s very kind of you.
Thank you for watching my tutorials. :)
Fun Fact.
Instead of using CC Light Burst, use CC Radial Fast Blur, It will reduce the time in rendering. :)
Yes, But I never reply there. :p
I have problem using circle..i don't know why. it just oval even i press shift+ contrl
name of application usd in this video?
+Prashant Puri The application that was used was Adobe After Effects if that's what your asking.
+smjokster
Thanks
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
Lel. 😂😂😂
Your tutorials are just awesome - well explained. I loved a comment " we need to rename the layer, caz we are organized people"
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)
Thanks man!
mine is going in minutes do you happen to have a fix?
Thanks a lot !!!
not working
thanks man!
One of the best 14 minutes that I spent in my life by watching this tutorial 😁😁❤️❤️
This guys voice is perfect😂😍😍
Yea its almost as if he's a robot
@CasamTDA is cutie - Music wow really ???
I needed 2 hours for this.
Your voice has been very sympathetic over the longer time.
Nice tutorial!
This has to be one of the best tutorials I have EVER SEEN. Great going Avnish!
Thank you so much. :)
awesome mate! finally I´ve found how to create these kind of simple videos for music, thanks
this is awesome!!! Thank you Avnish Parker.
Stay safe and have a wonderful day ❤👏👏❤
wow best tutorial thank you
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!
The best tutorial I've seen so far.
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)
This was incredibly helpful! Thank you!
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?
@@castministries set "clockStart" to the begining [in seconds] and set "rate" to -1
I dont know if it works, but it fells right.
best tutorial for audio visualizers
That was EPIC! Keep create and share for your inspiration for us! :))
Thank you for this video homie. Super informative and easy to follow!
"Let's rename this text layer as "Time" because we are organized people."
This is what the audio spectrum i wanted to make for my owen😍😍🙏🏻
Great video man! Very easy to follow and I learned a shit ton. Keep making these videos!
Again a superb video.... especially editing part
Thank you Aarti. :)
My audio spectrum wave affects my audio and gives it affects. Do you have videos on how to prevent this ?
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.
Thanks for this tutorial! Subscribed!
i was always laughing my ass off when he was saying " Cool " XD
Cool!
Kewl
I'm astounded by how simple this is. Thank you!
Yes!
i love u. finally i can make this! Thanks Avnish
+FourSteelCz Your always welcome.. :)
One word... Thank you! 🙂🙏
Now that, was a dope audio spectrum. Nice!
+BorderWOLF Thank you.. :)
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
whoops! nvm, I rechecked your channel and you did two vids on it. :P
+BorderWOLF lol.. :p
ne kadar teşekkür etsem azdır
I can't thank you enough
Cool!
Im Learning A LOT with your videos thank you so much!!!
I was waiting for this for so long heck time thx my friend avnish
Sorry for the delay, Just got time to post it. :)
CAn u make a tutorial for bounce on beats please it would be helpful if u
+Durgesh Patiley Yes sure,
I'll create a Tutorial on it..
Stay Tuned.. :)
hi mask 3 is not coming after pre compose but i can see under audio reactor, plz tell me what is wrong i did
+Avnish Parker how you edit background voice
how do you render the project? i'm new to this kind of thing.
This is very very beautiful! 😍
Thank you, Sir. :)
This dude sounds like in documentary. love it!!
Wow! This works beautifully!
Thank you!!!
Best video for Circular Audiogram
hello every one if you have the clock script problem >>?
go to Project Settings > Expressions, use the Legacy ExtendScript engine
thanks me later
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
Aidan Hyland at that time comment was not pinned
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
Awesome Video . No backlashes in the form of paying for plugins or anything. Thanks alot mate.
This was dope, can you make it so the text doesnt have the effect?
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.
Simple
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
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 :)
Your voice is perfect, if there's anybody I can trust to know how to do this it's a robot
Dear bro,,can you say me? Is monetization able for audio spectrum video?
মোহাম্মদ হাসান Yeah, don’t worry lol. As long as you’re allowed to use the music
The tts had a stroke at 7:00 when trying to say stroke XD
xD
Strokee
I made 2 of these and uploaded them to my channel thanks for the help dude
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.
Yay ! I have done it, I love your tutorials, I will share the channel
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.
اشكرك كثير و انا شخص معجب كبير بفديوتك 🌹🌸
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
sec = Math.floor(time%60);
min = Math.floor(time/60);
if(sec
Hey man thanks a lot. I was really overwheld and confused but now it all makes sense. Thank you.
At 7:41 couldn't you also put a circular logo in the middle instead of the timer?
Yes, You can put the Logo, and place the timer anywhere you want. :)
All your choice, I am just showing you the way. :)
@@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?
i was so thankful that i found your channel on youtube, thank you very much
i cant understand how u edit text ns ad script nd copied, how can u open script ..
alt+source = what the next step ?
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)
thanks man
your amazing you explained everything in detail even the expression error Good job!
When I add the clock script, it shows an error!! Please send me the correct one....
Same
very nice, I made a similar visualizer and learnt new things.
I'm having an error in my time. It's saying undefined. Like this 0:undefined
Can't believe I finally managed to create an audio spectrum. Thank you!
Qool. 😆
8:30 SELECT MOVE TOOL IS HOLDING V ON KEYBOARD
Excellent. Sir. I know the time how much spent to making perfect one... Respect. Best wishes.
When the audio spectrum moves the edges gets cut out by a square box
yeah I just noticed that with me😒
Do you know a fix?
@@PlayedboiCartier I wish I did... I'm trying to figure out how to upload it on instagram
@@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
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.
NO I CAN CREATE MY NIGHTCORE WITH THE LESSON I'VE LEARNED FROM U Thanks alot!
Sir will you make the video on - How to make video like (Chainamokers - Closer) lyrical video... Hello Subscribers please give reply to my comment????
+Omkar Tagade #Believe in Profession# I'll take a look at the video, and try to measure a short tutorial on it,
Stay Tuned.. :)
Avnish Parker ohh Tahnks🙏
ALL YOU NEED IS AE ND PREMIERE PRO FOR VIDEOS LIKE THAT.
F Yeah, weee wantt it :)
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
I will definitely watch all your tutorials ^_^ thank you!
The text doesn't work...
What?
You mean the Script?
Please make sure you are copying the Script from the Text file properly. :)
It's okay. Here's my new video that I made with what you taught me!
ua-cam.com/video/qBHptJbH6XI/v-deo.html
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)
thanks dude
Ready template PLS BRO
+Luar GFX I am sorry, but I don't share any Templates.. :(
just make it xD
Avnish Parker pls
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!
i dont do any of this, but its pretty interesting that you can do so much with 1 program!
türk olanlar
I am finally make this thanks sir your tutorial is very helpfull.....
😱😱😱😱 vc é o maior editor de vídeo do mundo
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.
long time ago but still working so good thnx alot
you are the smartest bro!
you got A NEW SUBSCRIBER
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.
Mr. Parker you are amazing, Cheers from NYC
Thanks you A LOT
You saved My Entire Live
You are the best one till this moment , i Appreciate your efforts .👍👍👍
Tnx sooo much ur my hero for my new video tnx ur my the best teacher ever
These tutorials are awesome. Really helpful. Thanks a lot Avnish Parker. Keep them coming. Much love
as usual you make things look so simple
thank you for excellent teaching ❤
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.
Instead of using Light Rays, use CC Radial Blur, it will make the Render faster. :)
@@avnishparker will experiment with it.... check it out when you get a chance. Thanks again.
Still the best tutorial 👍👍
Thank you Avnish. Fantastic tutorial :)
I see, you are smooth as ever
Learned a lot from you. Props!
THIS IS VERY NICE
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 ❤️
salmaaa dracosmirk ;p Eu não entendi foi nada cara
@ 8:05 how to get the text file on Mac?
The best tutorial that ive ever see on youtube