Grabster

After Effects Expressions (Tribal Trap Audio Visualizer)

Sep 1st, 2019
605
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. Scale expression:
  2.  
  3. minAudio = 0; /* Minimum amount of audio reaction */
  4. maxAudio = 100; /* Maximium amount of audio reaction */
  5. minStretch = 120; /* Minimum amount of scale. This is where your layer will be by default if there is no audio playing */
  6. maxStretch = 160; /* Maximum amount of scale. This is how far the scale goes */
  7. udioLev = thisComp.layer("Sound Keys").effect("Sound Keys")("Output 1"); /* Change "Output #" to your soundkeys output you want the expression to use */
  8. s = linear(audioLev, minAudio, maxAudio, minStretch, maxStretch);
  9. [s,s]
  10.  
  11. Smooth expression:
  12.  
  13. s = smooth(.3,5)
  14.  
  15. Source video:
  16. https://youtu.be/kelTyIH_JMs
Add Comment
Please, Sign In to add comment