-
Sound Keys Time Remap Interpolation?
Howdy COWers,
I have researched this question fairly fully, and hope that I am not replicating a question (if I am, my apologies).
I am taking 60 frame footage of someone tapping a drum and am Time Remapping that video to ramp into place as the drum stick hits the drum. I’ve met with both success and failure.
I am currently (successfully) using Trapcode Sound Keys to locate a specific note; the range placement is generating outputs between 0.0 and 1.0. I am then remapping the time to the (adjusted) correct frame when the appropriate threshold has been met (.9) using these expressions:
x = time*2.5;
y = value;
if ( thisComp.layer(“Black Solid 2”).effect(“Sound Keys”)(“Output 1”) > .9) {value = x} else {value =y};This creates an interesting motif, to be sure, but the incorrect one.
Of course, the remapped time reverts back the timeline whenever the threshold is below .9; the desired effect would be for the video to freeze and/or interpolate between these ramped moments.
My assumption is that I require an intermediary (a slider, perhaps?) to reference, but have not been able to wrap my brain around it yet.
Any thoughts out there?
MC
x = time*2.5;
y = value;
if ( thisComp.layer("Black Solid 2").effect("Sound Keys")("Output 1") > .9) {value = x} else {value =y};