-
Reduce amount of stabilization
I have stabilized some footage, but sometimes it’s just too stable.. Looked for a solution but didn’t find anything – so I gave it a try.
origValue=transform.anchorPoint.valueAtTime(0);
currentValue=transform.anchorPoint.valueAtTime(time);percent=effect("percent")("Slider")/100;
stable=(currentValue-origValue)*percent;
origValue+stable
That seems to work, but I wonder if there is another way of doing this, or something people tend to do..
PS. I just found a reply from Filip Vandueren to the post “Less exact motion stabilize?”
precision= 50; // use a percentage from 0-100 %
position= ( value*precision + anchorPoint*(100-precision))/100 ;
I don’t quite get his solution yet, but is obviously less code!!
Sorry, there were no replies found.