-
Animate Scale Y Axis to Audio Amplitude
Hey there!
I am basically wanting an image to scale up and down to my audio amplitude on the Y axis. I am useless with expressions so any help would be very grateful!
The expression I usually use for scale to audio is:
minAudio =10;
maxAudio = 1;
minStretch = 100;
maxStretch = 110;audioLev = thisComp.layer(“Audio Amplitude”).effect(“Both Channels”)(“Slider”);
s = linear(audioLev, minAudio, maxAudio, minStretch, maxStretch);
[s,s]
But that locks both X & Y. Im just looking to effect the Y axis only.