Go to: Synopsis. Return value. Related. Flags. MEL examples.

Synopsis

timeEditorBakeClips [-bakeToAnimSource string] [-bakeToClip string] [-clipId int] [-combineLayers boolean] [-forceSampling boolean] [-keepOriginalClip boolean] [-path string] [-sampleBy time] [-targetTrackIndex int] [-targetTracksNode string] objects

timeEditorBakeClips is undoable, queryable, and editable.

This command is used to bake Time Editor clips and to blend them into a single clip.

Return value

intCommand result

In query mode, return type is based on queried flag.

Related

timeEditorClip

Flags

bakeToAnimSource, bakeToClip, clipId, combineLayers, forceSampling, keepOriginalClip, path, sampleBy, targetTrackIndex, targetTracksNode
Long name (short name) Argument types Properties
-bakeToAnimSource(-bas) string create
Bake/merge the selected clips into the animation source.
-bakeToClip(-btc) string create
Bake/merge the selected clips into a clip.
-clipId(-id) int createmultiuse
Clip IDs of the clips to bake.
-combineLayers(-cl) boolean create
Combine the layers of the input clip.
-forceSampling(-fs) boolean create
Force sampling on the whole time range when baking.
-keepOriginalClip(-koc) boolean create
Keep the source clips after baking.
-path(-pt) string createmultiuse
Full path of clips on which to operate. For example: composition1|track1|group; composition1|track1|group|track2|clip1.
-sampleBy(-sb) time create
Sampling interval when baking crossfades and timewarps.
-targetTrackIndex(-tti) int create
Specify the target track when baking containers. If targetTrackIndex is specified, the track index within the specified node is used. If targetTrackIndex is not specified or is the default value (-1), the track index within the current node is used. If targetTrackIndex is -2, a new track will be created.
-targetTracksNode(-ttn) string create
Target tracks node when baking containers.

Flag can appear in Create mode of command Flag can appear in Edit mode of command
Flag can appear in Query mode of command Flag can be used more than once in a command.

MEL examples

// Bakes the currently selected clips to a new clip named "testClip"
   timeEditorBakeClips -bakeToClip "testClip";