Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
0

Convert Audio to Keyframes Not Accurate

Community Beginner ,
Jan 10, 2017 Jan 10, 2017

Copy link to clipboard

Copied

Hello, I'm a music producer and I'm trying to sync parts of my visualizer to parts my song, specifically the drums. So I exported the kick and snare track and converted that to keyframes, expecting the keyframes to spike at the transients. However, in the space between the drums the keyframes hover around 30% even though there is complete silence at that point in the audio file. The transients also only peak at around 50%, even though they reach 0dbfs in the audio file. Why is this and is there a way to fix it?

-GlitchMaster

Views

2.3K
Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Beginner , Jan 10, 2017 Jan 10, 2017

Wait! I figured it out, converting the audio to keyframes converted all the audio in the composition into keyframes, not just the trigger. All I had to do was mute the song then convert the trigger!

-GlitchMaster

Votes

Translate
LEGEND ,
Jan 10, 2017 Jan 10, 2017

Copy link to clipboard

Copied

You have a wrong understanding how this works. This simply converts the overall amplitude within the frequency range, not specific "hits" or whatever. Unless your hits are exactly one sample long at a maximum amplitude of 100% and also happen to be exactly at the correct time position, they will never max out. The rest doesn't really matter. One would simply remap/ multiply or whatever the values in the expression that actually uses them. This is a common workflow.

Mylenium

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jan 10, 2017 Jan 10, 2017

Copy link to clipboard

Copied

Yeah, I just have the kick and snare in an audio file, they are the "hits" that I want to transfer into keyframes, they do peak at 100% (0dbfs) and have a fast decay (not 1 sample though). Here's what the audio clip looks like in FL Studio:

https://gyazo.com/c4b22cb7f64ac2344bcef0f935892cf9

As you can see, there are the hits at the exact right times that I need them and silence in between. However, in After Effects this silence gets turned into a percentage value from around 10-30%, with the hits not peaking, even though they are as loud as they can possibly be in a 24-bit audio file.

-GlitchMaster

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jan 10, 2017 Jan 10, 2017

Copy link to clipboard

Copied

Wait! I figured it out, converting the audio to keyframes converted all the audio in the composition into keyframes, not just the trigger. All I had to do was mute the song then convert the trigger!

-GlitchMaster

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 10, 2017 Jan 10, 2017

Copy link to clipboard

Copied

You should look into expressions. That's the effective way to use Audio to Keyframes.

In CC 2017 you should see values for Both channels of about 11 or 12 for zero DB if you look at the graph editor.

Screen Shot 2017-01-10 at 11.09.48 PM.png

I'm not sure what you are driving or where you are getting 50% but here's how you write an expression that takes everything from 49.9 and below to zero and everything from 59 and above to 100 that you could apply to the scale of a layer. Just using the audio to keyframe values will not produce a quick on and off. This expression basically sets everything below 49.9 to zero and everything from 50 and above to one hundred.

t = thisComp.layer("Audio Amplitude").effect("Both Channels")("Slider");

s = linear(t, 49.9, 50, 0, 100);

[s, s]

With this particular clip I decided that 4.62 was my switch point buy looking at the graph editor.

Screen Shot 2017-01-10 at 11.15.22 PM.png

So the expression to switch an audio layer on and off every time that the audio crossed above 4.62 that the layer would scale to 100%. I set the upper value to 6 to give the scale a little motion.

t = thisComp.layer("Audio Amplitude").effect("Both Channels")("Slider");

s = linear(t, 4.62, 6, 0, 100);

[s, s]

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Dec 21, 2023 Dec 21, 2023

Copy link to clipboard

Copied

LATEST

Is there any chance you could point me to a youtube tutorial on how to do this from scratch, pretty please? Its exactly what I need

@ m e l a n k a y a

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jul 06, 2019 Jul 06, 2019

Copy link to clipboard

Copied

I love you... I was about to put my head through a wall.

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines