READ ME.txt

READ ME - CreateMovie - VB6
==========================
1.0
 
CreateMovie - VB6 is a Microsoft Visual Basic 6 application which demonstrates how to use the QuickTime COM Control in QuickTime 7 to create a movie from a sequence of images and then save that movie to disk.
 
This sample uses the CreateNewMovieFromImages method to create the movie.
 
There are actually a couple of ways to create a movie from a series of images:
 
1. You can use CreateNewMovieFromImages (instead of CreateNewMovie) as shown in this sample.
 
2. If you want to piece a movie together, you can have two QTMovie controls. CreateNewMovie in one. In the other you can open images one by one and use InsertSegment to append to the new movie in the other control. Then you could save or export the new movie.
 
3. As a variation on #2 you could Paste the generated images one-by-one into the new movie, if you can get them onto the clipboard.
 
 
Building the sample
-------------------
 
A Microsoft Visual Basic 6 project is included.
 
Note: 
 
You will need to add the QuickTime Control 2.0 to the VB 6 Toolbox in order to build the project. Here's how:
 
- Choose Project | Components and scroll down to the Apple QuickTime Control 2.0. Check the box beside this component in the list and click OK to add it to the Visual Basic 6 Toolbox.
 
You must also add the Microsoft Common Dialog Control to your project. Here's how:
 
- Choose Project | Components. Scroll down until you see the Microsoft Common Dialog Control 6.0. Check the box beside it and click the OK button to add the dialog control to the toolbox. 
 
 
 
Running the sample
------------------
 
Build the project and run the executable (.exe). Select File->New From Image Seq... and after a few seconds you should see the new movie created in the window. Use File->Save to save the newly created movie to disk.