How to enable/disable an audio track
Hi.
I have a sequence in AE with several audio tracks, and I want to be able to choose one of them and enable it, disabling the others. Is it possible? How would you guys do it?
Thanks!!
Hi.
I have a sequence in AE with several audio tracks, and I want to be able to choose one of them and enable it, disabling the others. Is it possible? How would you guys do it?
Thanks!!
In that case, create a Control Null, add a slider to it, and then add this expression to the Audio Levels of all the audio layers:
thisLayer.index == thisComp.layer("Null 1").effect("Audio-Selector")("Slider") ? value: [-192,-192];
This will compare the index to the layer selected. If they're equal, it will use the value you have set. If not, it will mute the layer by setting its level to -192dB.
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.