CameraVideoRecording#
- class ansys.stk.core.graphics.CameraVideoRecording#
Records the 3D window to either a movie file or to consecutively ordered image files each time the scene is rendered.
Overview#
Do not use this method, as it is deprecated. Use the overload taking a video format instead. Starts recording a file in the WMV format at the specified bit and frame rate. |
|
Start recording a frame stack. Each frame is saved as a separate image file. The filename of each frame is defined by a prefix followed by a frame number. |
|
Stop recording. |
|
Start recording a video file at the specified bit and frame rate. |
Get if recording is occurring or not. |
Import detail#
from ansys.stk.core.graphics import CameraVideoRecording
Property detail#
Method detail#
- CameraVideoRecording.start_recording(self, wmv_filename: str, video_bit_rate: int, video_frame_rate: int) None #
Do not use this method, as it is deprecated. Use the overload taking a video format instead. Starts recording a file in the WMV format at the specified bit and frame rate.
- CameraVideoRecording.start_recording_frame_stack(self, file_directory: str, file_prefix: str, camera_snapshot_file_format: SnapshotFileFormat, starting_frame_number: int, number_of_frame_digits: int) None #
Start recording a frame stack. Each frame is saved as a separate image file. The filename of each frame is defined by a prefix followed by a frame number.