AnmolM
Contributor
AnmolM
Contributor
Activity
‎Nov 28, 2021
04:43 AM
I dont think this solution works anymore. I want to use a non-vcpkg method for libcairo.lib - the default meson method builds libcairo.a on windows. Has anyone managed to build libcairo.lib on windows recently.
... View more
‎Nov 25, 2021
11:25 PM
1 Upvote
There is a free wiggle plugin for PPro and AE. Here - https://www.prosya.com/software/wiggler-effect/ - select the layer to wiggle, and the param to change. The params under Wiggle map to the wiggle function params.
... View more
‎Nov 24, 2021
12:56 AM
1 Upvote
I'll start this post and hope some others will add to this. First, non of the AEGP_ calls are supported in PrMr. From the docs - After Effects suite call Premiere Pro equivalent function
WorldTransformSuite1()->copy() PF_COPY()
WorldTransformSuite1()->convolve() in_data->utils->convolve()
FillMatteSuite2()->fill() PF_FILL()
PF_PixelDataSuite1->get_pixel_data8() PF_GET_PIXEL_DATA8() From the example - Checkout PF_EffectUISuite1 and PF_ChannelSuite1 are not supported. From the example - SDK_Noise, PF_PixelFormatSuite1 is supported. From Pathmaster - none of the mask suites seem to be supported. So, how do we access masks in Premiere Pro ? Unsupported - PathQuerySuite1, PF_MaskSuite1 From Convolutrix - PF_NEW_WORLD, PF_BLEND, PF_FILL are supported.
... View more
‎Nov 20, 2021
05:36 AM
I was curious about the time param. Now, I understand. Cheers.
... View more
‎Nov 16, 2021
08:22 PM
Here is the link from another thread with the checkout layer - https://community.adobe.com/t5/after-effects-discussions/is-it-possible-to-access-all-input-pixels-in-smartfx-if-the-input-is-offscreen/m-p/9829850
... View more
‎Nov 11, 2021
07:34 AM
So without t, it is noise(x, Freq, amp, octaves, amp_mult) and with t it is noise(t, Freq, amp, octaves, amp_mult). Would that be correct? So t replaces the seed?
... View more
‎Nov 11, 2021
06:18 AM
I'm curious about what exactly the time param does in a wiggle expression. wiggle(freq, amp, octaves = 1, amp_mult = .5, t = time) There is some sort of a noise function internally. If we supply layer time as the last param, is time simply added to the noise seed to obtain a value with required freq, octave and amplitude? wiggle(freq, amp, octaves, amp_mult , t) So, if we apply wiggle to x, internally does it become noise(x+t, Freq, amp, octaves, amp_mult) instead of wiggle(freq, amp, octaves , amp_mult ) - noise(x, freq, amp, octaves, amp_mult) without any time param?
... View more
‎Nov 09, 2021
04:16 AM
Building plugins for both After Effects and Premiere Pro using AE SDK is well documented. Premiere pro has its own SDK as well. However, Elements also supports plugins. So, how does one target both Premiere Elements and Premiere Pro using plugins using either AE SDK or PPro SDK?
... View more
‎Nov 05, 2021
05:44 AM
This is funny, I was trying to change x and y point params on application of effect. Similar problem.
... View more
‎Nov 05, 2021
04:43 AM
Can we set fixed point co ordinates during setup? So, if I want 3,3 during setup and these are absolute co ordinates.
... View more
‎Nov 01, 2021
03:28 PM
I'm aware of the AEGP Stream suite to get the x,y and even z co ordinates of a layer in AE. How does one obtain this data on PPro. PPro does not support AEGP so how do plugin authors get this data?
... View more
‎Oct 30, 2021
07:52 AM
Link - not parenting. Like this ? - https://helpx.adobe.com/in/after-effects/how-to/animating-with-parenting.html I thought parenting was only done between layers. Is it possible to parent a single param to a layer ?
... View more
‎Oct 30, 2021
05:53 AM
I have an an effect that has an entry for Source - which is a point x,y param. The layer has been tracked and the motion applied to null object "Null 1" I have keyframes on Position, rotation, scale for "Null 1" What expression will capture the transform for Position, Rotation, Scale and apply it to the x,y co-ordinates of the Source - point parameter ?
... View more
‎Oct 24, 2021
05:34 PM
Thanks, I was not aware of this.
... View more
‎Oct 23, 2021
12:31 PM
13 years later, your posts are still useful. Thanks shachar
... View more
‎Oct 23, 2021
07:31 AM
I got the position of the camera as matrix.mat[3][0], matrix.mat[3][1], matrix.mat[3][2] - I use this as x,y,z
... View more
‎Oct 23, 2021
07:22 AM
On of the linked threads is still available on Wayback - https://web.archive.org/web/20111223234233/http://forums.adobe.com/thread/570135
... View more
‎Oct 23, 2021
06:07 AM
For reference, the camera matrix is obtained by - ERR(suites.PFInterfaceSuite1()->AEGP_ConvertEffectToCompTime(in_data->effect_ref, in_data->current_time, in_data->time_scale, &comp_timeT));
ERR(suites.PFInterfaceSuite1()->AEGP_GetEffectCamera(in_data->effect_ref,&comp_timeT,&camera_layerH));
if (!err && camera_layerH){
ERR(suites.LayerSuite5()->AEGP_GetLayerToWorldXform(camera_layerH,&comp_timeT, &matrix));
// Now obtain camera position
}
... View more
‎Oct 23, 2021
05:42 AM
This is the ExtendScript equivalent - "function camPos() \
{if (app.project.activeItem.activeCamera != null) \
return app.project.activeItem.activeCamera.transform.position.value;\
else \
return [0,0,0];\
}\
camPos();"
... View more
‎Oct 22, 2021
08:11 PM
Is there an example where AEGP_GetLayerToWorldXform will take the matrix and spit out the camera position in world co-ordinates ?
... View more
‎Oct 22, 2021
09:31 AM
Thank you - app.project.activeItem.activeCamera.transform.position.value works for me. This supplies a comma delimited string
... View more
‎Oct 22, 2021
09:10 AM
I got the camera position in script via app.project.activeItem.activeCamera.transform.position; Is there a way to convert the position object to a string so it can be used for further processing and passed around ? For example, I tried app.project.activeItem.activeCamera.transform.position.toString() ; - I got [object Property]
... View more
‎Oct 22, 2021
08:03 AM
Obtaining the distance is not the issue - the problem is that I wish to obtain certain vectors that are only available from expressions (per my knowledge). For instance, toWorld(anchorPoint)
thisComp.activeCamera.position These are both unavailable in the script. Once these vectors are available, the distance can be evaluated.
... View more
‎Oct 22, 2021
07:35 AM
Is there an example for - apply an expression ? If I have a plugin with a dummy slider - I can apply the expression to the dummy slider and obtain the value. Is that roughly what you are referring to ?
... View more
‎Oct 22, 2021
06:50 AM
I have a script that needs the value of this expression - length(this_comp.layer("A").position, this_comp.layer("B").position); How can I obtain the value of an expression from within a script ?
... View more
‎Oct 22, 2021
03:23 AM
Link to archived copy of thead - https://web.archive.org/web/20120420150041/http://forums.adobe.com/thread/833377
... View more
‎Oct 21, 2021
12:45 PM
This is what I am trying to do in c++ sdk d = length(toWorld(anchorPoint),thisComp.activeCamera.position);
... View more
‎Oct 21, 2021
12:40 PM
For a project, I would like to get the z position of camera and current layer. Is there a simple way to :- a. Check if The 3d layer is enabled for current layer b. If enabled, get x,y,z position of camera and current layer. Artie is a bit involved as a simple example to just get this info.
... View more
‎Oct 12, 2021
03:06 AM
@Royi A - How does Photoshop filter access data in Interleaved ? From my understanding, its all in the stated image modes, which you have to convert to interleaved RGB.
... View more