Movie(...)
This method creates a Movie object from the contents of the specified file.
Path
session.Movie
Required arguments
- name
A String specifying the repository name for the movie.
- fileName
A String specifying the file from which the movie is to be read. The file extension must be specified and indicates the movie format (.avi, .mov, .mpeg, or .wmv).
Optional arguments
- startFrame
An Int specifying the first frame to be displayed from this movie. The default value is 0.
- endFrame
An Int specifying the last frame to be displayed from this movie. A negative number will indicate reverse numbering: -1 is the last frame of the movie. The default value is −1.
- timelineStartFrame
An Int specifying the global timeline frame number that corresponds to startFrame. A value of 0 will indicate the first frame to be displayed in the viewport. The default value is 0.
- timelineEndFrame
An Int specifying the global timeline frame number that corresponds to endFrame. A negative number will indicate reverse numbering: -1 indicates the last frame to be displayed in the viewport. The default value is −1.
- timelineStartTime
A Float specifying the global timeline time that corresponds to the time of startFrame. The default value is 0.0.
- timelineEndTime
The SymbolicConstant END_FRAME_TIME or a Float specifying the global timeline time that corresponds to the time of endFrame. The SymbolicConstant END_FRAME_TIME indicates the time in this movie corresponding to endFrame. The default value is END_FRAME_TIME.
Return value
A Movie object.
Exceptions
ValueError.
- If fileName does not exist or can not be read:
ValueError: Unable to open movie file
- If fileName references an unsupported movie file format:
ValueError: Unsupported movie format
- If the contents of fileName are corrupt or can not be decoded:
ValueError: Unable to decode movie file