Copy link to clipboard
Copied
I'm trying to get audio markers into the AE project. I have saved the audio using Adobe Audition, which has a marker. Now when i bring this audio to AE project. I need to go to LAYER->MARKER->UPDATE MARKER FROM THE SOURCE. After this the marker shows up in the timeline.
Now I want to achieve the same using expression or a script. How do I 'UPDATE MARKER FROM THE SOURCE' using a script or an expression ? Is this possible?
An expression cannot do that (it can only set the value of the property it is applied to but cannot change anything else in your project).
Scripts can execute arbitrary menu commands as follows
var commandId = app.findMenuCommandId("Update Markers From Source")
app.executeCommand(commandId);
Copy link to clipboard
Copied
An expression cannot do that (it can only set the value of the property it is applied to but cannot change anything else in your project).
Scripts can execute arbitrary menu commands as follows
var commandId = app.findMenuCommandId("Update Markers From Source")
app.executeCommand(commandId);
Copy link to clipboard
Copied
Markers from PPro are brought over into AE — not too sure about Audition to AE.
There is also the case for preoperly setting up XMP metadata for such interchanges. More info here - https://helpx.adobe.com/audition/using/viewing-editing-xmp-metadata.html#viewing_and_editing_xmp_met...
Find more inspiration, events, and resources on the new Adobe Community
Explore Now