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

Synopsis

movieInfo [-frameCount] [-height] [-width] string

movieInfo is NOT undoable, NOT queryable, and NOT editable.

movieInfo provides a mechanism for querying information about movi files.

Return value

None

Keywords

movie, imageplane, avi, quicktime

Related

shot

Flags

frameCount, height, width
Long name (short name) Argument types Properties
-frameCount(-f) create
Query the number of frames in the movie file
-width(-w) create
Query the width of the movie
-height(-h) create
Query the height of the movie

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

// On windows (AVI is only supported on windows, currently)
movieInfo -frameCount "C:/My Documents/myMovie.avi"
// Result: 24
movieInfo -width "C:/My Documents/myMovie.avi"
// Result: 1024