I was wondering if there is a way, with expressions to average a channel.
I made a track, which is a little shaky and would like to be able to average it non destructively, linking the average value with a dummy slider
Not sure I m clear…
I think an interactive average would need an accumulation buffer to calculate while keeping the original value intact. And that is not possible with expressions.
However, you could keep your original, make a very smoothed-out average channel, and use an expression to transition the values from one to the other.
Let’s say you have shaky.position.x as the original track.
Copy it and name the axis average. And average the position.x channel with 25?
Create an axis called slider
Now make another axis and in its position.x channel write:
(shaky.position.x * slider.position.x) + ((1-slider.position.x) * average.position.x)
Axis smoothing. It’s just that I hate the fact that the average slider is destructive and would like a more elegant solution than copying my original axis…