About
The MovieSaver class is used to save image data to a movie file. Supported movie containers are either AVI (FILTER_AVI) or QuickTime (FILTER_MOVIE).
- Warning
- For MAXON API media input and output see Media Sessions Manual.
Allocation/Deallocation
A MovieSaver can be created with the usual tools:
Functionality
A MovieSaver object simply opens a movie file and writes multiple frames into that file:
if (movieSaver == nullptr)
const IMAGERESULT res = movieSaver->Open(saveMovieFile,
for (
Int32 frame = 0; frame < frameCnt; ++frame)
{
}
movieSaver->Close();
maxon::Url MaxonConvert(const Filename &fn, MAXONCONVERTMODE convertMode)
@ NONE
No check if file exists under case-sensitive drives.
Definition: ge_autoptr.h:37
maxon::Int32 Int32
Definition: ge_sys_math.h:60
#define FILTER_AVI
AVI Movie.
Definition: ge_prepass.h:191
IMAGERESULT
Definition: ge_prepass.h:3731
@ OK
Image loaded/created.
#define MAXON_SOURCE_LOCATION
Definition: memoryallocationbase.h:67
#define iferr_return
Definition: resultbase.h:1465
Further Reading