-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parameter Interpolation Type #116
Comments
Would this be requesting a default interpolation type for the parameter instead of just getting whatever the host decides? Or do you want to set specific key values and interpolation types as part of the default value? |
This needs further discussion. I believe Pierre's example is he wants to do some analysis which then sets some keyframes, and instead of getting the default host linear or smooth interpolation he wants to indicate that the keys should be step-evaluated (ie. kOfxParamInterpTypeConstantStep or kOfxParamInterpTypeHold). |
How about something like this?
|
That would be fine with me. Main application:
Additional notes: Phil was saying they dont have in their app ConstantStep. |
OK in support of this FR, we rechecked all hosts. RIght now if you have option choice menu with options A, B, C, D, E - kOfxParamTypeChoice An example: Say you have an analysis process that detects 3:2 pulldown phases - you don't want marking first frame of segments to be producing linearly animated values. We use that here in mulitple places for example for plugins that request multiple frames from same clip to process a frame to allow user to mark scene cuts. In general as we get an instance change callback we could with such suite do it ourselves without host having to implement anything else. I usually don't like to single out hosts but this seems a generalized issue... Some of the tests were done by other folks here so hope I am not lying :)
I know a user can usually select all KF and change interpolation type themselves but that's annoying, not clear to user and I can't think of a use case where one would want linear interpolation of a choice param. We haven't check all hosts for boolean param so it doen't have same issue. And have had no use yet for animating string param which likely only makes sense constantSteps (that param should also have not supported option like boolean and choice). We use that also on other param types such as in our color matching tool we ask user to set KF on reference frames (where the param is a frame number). In that case it's cosmetic as we always look for the frames with KF but user still sees wrong values in their UI. Finally, as this implies V2 suite, as these are global pointers, shouldn't we always put from hereon Version as first item of a suite so we don't have ourselves to do book-keeping of which suite version was loaded in a given host? |
|
"but I have seen it used in Nuke to switch among a set of inputs (where the choice param's options are which input to use)" But I assume they don't switch the input in-between... that could be another use case for displaying Clip menu in effects controls so at least additional inputs can be switched along timeline :) " Perhaps the spec could add a property which plugins could use to say "don't interpolate this choice param" " They should never :) |
Yes, that's exactly what happens. Set a kf value 0 at t0, and 10 at t10, it switches through all 10 inputs over the 10 sec. (But yes, not a fractional input of course, it uses int values.)
I think it's a bit too late to specify that since as you say many hosts do it today. |
I am not aware of that - sounds like a conceptual bug, what we do for that here is to have user make a long clip abutting all as one big clip and use Frame Number to mark each clip first frame. OT but Foundry does have another UI issue if say you have 10 optional inputs, they only display the first 6 I think, so it you want to connect input 10, you have to connect 7,8,9 first so the connector shows up. Another host has a better UI in my opinion popping up a menu to select which optional input to add as input in UI of node.
Yes, that's one thing this Proposal would address |
Adding: As per discussion in OpenFX meeting, there is no common curve editing method shared by all hosts. Two hosts responded they don't support bezier with handles in their KF editor.. so this will be limited to whatever the host sets for interpolation. For custom, one could make argument that one could pass back the custom int (is that a thing for first KF), also it could maybe adapt the same interpolation model as custom parameter. A situation that this does not handle directly is importing data directly in plug-in or using a custom modal dialog with key-frame handles, would the proper way to store these in some linked parameter? |
I don't understand this comment -- are you suggesting a change to this proposal, or is this something different? Also Custom params, if animation is supported by the host, use the custom interpolation callback so the plugin is responsible for how it interpolates. It could, for instance, encode the desired interpolation type for each keyframe's data in the data itself. |
I guess that would be an application for kOfxParamPropDataPtr if I needed extra data for myself. The only question is about custom option. If I want to check (get) the interpolation type and I get "custom", it seems I would not want to change interpolation type if I expect a curve of some sort, So it works for edit value. If I want to add a new KF if I select smooth curve I assume host will write whatever it would do if one manually added a KF there now. So not clear why we need custom type unless there was a host supplied custom type callback with its own enums... For intiial simplicity would rather not go there SO my suggestion then would be strike out custom option for now. Only user - techsupport request right now is: be able to change choice option to constantStep if not the default, be able to change sliders to be constantStep or Curve if defaulted to linear. |
That works for me. @fxtech ? |
What is the conclusion for Interpolation type: Aside adding an OfxParamPropInterp property which is clear, Options seems to be:
|
Proposed new API:
|
Looks good to me - I assume this would be added to ofxParam.h, not inside suite. Sorry I had to drive somewhere today and I got in cell phone vortex just when you started to talk about this.,,, |
Open Effects Proposal for Standard Change
Please read the contribution guidelines first.
Standard Change Workflow
standard change
tagfeature/PROPOSAL-NAME
branch)maintainer merges PR to master which closes PR and issue
Requirements for accepting a standard change:
Summary
We discussed for a while supporting interpolation types for parameters.
Motivation
As we are discussing also effects interchange... a good thing would be to support key-framing representation
Problem
Except for boolean, and perhaps menu which we assumed is constant animation (specs should precise so one does not animate menus) - maybe string too?
We don't have a model for curve function curves. I put Smooth below, I presume we need two things: a form of cubic type (much like in GLTF) and would like a form of monotonous curve representation for time based parameters (e.g. in retiming you don't want the curve to make you go backwards which means going from A to B never goes outside the min and max...). From experience most application use a form of bezier for the type Smooth. Other types can be defined but not expected to be supported by app. It's been suggested that if an app does not support "smooth" interpolation that it can perhaps use an hybrid linear to position KF and a backing per frame of values...
Add kOfxParamPropInterpType
Impact
Likely suite would need to be V2?
Documentation Impact
What changes to the docs are needed for this change?
Stakeholders
Who will benefit from this proposed change? Plug-ins, hosts, or both? Specific types of hosts?
Discussion
The text was updated successfully, but these errors were encountered: