Skip to main content
Participant
August 25, 2018
Question

How Do You Make Audio Spectrum React More Sharply To Sound Keys?

  • August 25, 2018
  • 1 reply
  • 1146 views

I am making an audio spectrum and I parented my logo scale to sound keys of a song. It reacts to the song but I want the logo to retract much quicker than it does. It will scale up when there is bass and then slowly go back to its normal scale. How do I make it more bouncy so it goes back faster?

Similar to Trap City's logo here:

Aero Chord & Kirsten Collins - Confession (Lyrics) - YouTube

This topic has been closed for replies.

1 reply

Mohammad.Harb
Community Expert
Community Expert
August 25, 2018

Multiply the expression by a number for example X5

Participant
August 27, 2018

Here is my expression:

minAudio = 0;

maxAudio = 100;

minStretch = 71;

maxStretch = 90;

audioLev = thisComp.layer("Sound Keys").effect("Sound Keys")("Output 1");

s = linear(audioLev, minAudio, maxAudio, minStretch, maxStretch);

[s,s]

When I try to put *5 at the end, the whole logo just scales up. I don't want it to get bigger just trying to make it go back faster.