Can I compose AVI video from the saved frame images?
From MediaLooks Knowledge Base
Sure, you can compose a stream from saved frame images and capture it to AVI using Multimedia SDK.
Here is a sequence of actions:
- Create playout object and initialize it
- Disable background by SetBackGround("none") method
- Add your frame imades to playlist using "AddFile" method
- You can also set the duration of every image by SetInOut method
- Create and init MG AVI Capture object by m_objAVICapture.Init( pPlayout, "AVI Cap" ); method
- Set capture file and start AVI capture object by Start(1) method
- Start playout onject.
This sequence guarantee that all frames will be captured to file.