Old 07-18-2021, 04:37 PM   #1
notamole*
Human being with feelings
 
Join Date: Apr 2019
Posts: 15
Default Fader reset script?

does anyone know of a script that adds a volume/pan smoother or similar default trim plugin to a track set to that tracks fader level and than resets the fader? I feel like this would make volume automation way easier
notamole* is offline   Reply With Quote
Old 07-20-2021, 11:34 PM   #2
jrk
Human being with feelings
 
Join Date: Aug 2015
Posts: 2,969
Default

Try this little (EEL) script:
Code:
t_n = CountSelectedTracks(0);

i = 0;
while (i < t_n)
(
	t = GetSelectedTrack(0, i);
	pos = TrackFX_AddByName(t, "volume_pan", false, 1);

	GetTrackUIVolPan(t, t_vol, t_pan);
	t_vol_dB = 20*log10(t_vol);
		
	TrackFX_SetParam(t, pos , 0, t_vol_dB);

	SetMediaTrackInfo_Value(t, "D_VOL",1);
	
	i += 1;
);
__________________
it's meant to sound like that...
jrk is offline   Reply With Quote
Old 07-24-2021, 04:32 PM   #3
notamole*
Human being with feelings
 
Join Date: Apr 2019
Posts: 15
Default

This was just what I was looking for, thank you!!
notamole* is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -7. The time now is 09:44 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.