Variables | |
Movie2_Acq_Mode | AcquisitionMode |
Aquisition mode. More... | |
LONG | CompressionCodecIndex |
Specify the video compression codec to be used. More... | |
double | FrameRate |
Set frame rate with which the CVB Movie2 control should record the video signal. More... | |
__int3264 | Image |
Sets or gets the image object, which is to be used as the source for AVI recording. More... | |
VARIANT_BOOL | IsRecording |
Checks whether the Movie2 OCX is currently recording AVI streams to disk. More... | |
LONG | NumAcquiredFrames |
Query the number of frames that have so far been acquired during the running acquisition. More... | |
LONG | NumCompressors |
Retrieve the number of compression codecs installed on the system. More... | |
LONG | NumDroppedFrames |
Query the number of frames that have so far been dropped during the running acquisition. More... | |
Movie2_Sync_Mode | SynchronizationMode |
Synchronization mode. More... | |
BSTR | TargetFileName |
Set the name of the file into which the AVI sequence is to be recorded. More... | |
VARIANT_BOOL | UseMetaData |
Specifies whether the meta data should be written to the AVI file or not. More... | |
|
property |
Aquisition mode.
With this property, you can determine how the CVB Movie2 control acquires the images that are stored in the AVI file.
[in,out] | AcquisitionMode | Acquisition mode to be set. See Movie2_Acq_Mode for possible modes. |
Visual Basic - VB Movie2 OCX Example
Visual C++ - VC Movie2 OCX Example
|
property |
Specify the video compression codec to be used.
Use the property NumCompressors and the method GetCompressorName to find out which and how many codecs are available.
[in,out] | CompressionCodecIndex | Index of the compressor to be used for the next recording. |
Visual Basic - VB Movie2 OCX Example
|
property |
Set frame rate with which the CVB Movie2 control should record the video signal.
[in,out] | FrameRate | Frame rate to be set. |
|
property |
|
propertyreadonly |
Checks whether the Movie2 OCX is currently recording AVI streams to disk.
[out] | IsRecording | TRUE if it is currently recording, FALSE otherwise. |
TRUE
indicates that the OCX is currently recording, FALSE
otherwise. Visual Basic - VB Movie2 OCX Example
|
propertyreadonly |
Query the number of frames that have so far been acquired during the running acquisition.
Usually the number is reset at the beginning of the acquisition. It may also be reset by a call to ResetAcquiredFramesCounter.
[out] | NumAcquiredFrames | Number of frames that have been acqurired. |
Visual Basic - VB Movie2 OCX Example
|
propertyreadonly |
|
propertyreadonly |
Query the number of frames that have so far been dropped during the running acquisition.
Usually the number is reset at the beginning of the acquisition. It may also be reset by a call to ResetDroppedFramesCounter.
[out] | NumDroppedFrames | Number of frames that have been dropped. |
Visual Basic - VB Movie2 OCX Example
|
property |
Synchronization mode.
With this property, you can determine how the CVB Movie2 control acquires the images that are stored in the AVI file.
[in,out] | SynchronizationMode | Synchronization mode to be set. See Movie2_Sync_Mode for possible modes. |
Visual Basic - VB Movie2 OCX Example
Visual C++ - VC Movie2 OCX Example
|
property |
|
property |
Specifies whether the meta data should be written to the AVI file or not.
The ProvideMetaData Event is fired when new MetaData can be written to the AVI file.
Meta data are (ANSI-) strings with up to 64k characters, one per image being recorded. For example, the MetaData can be used to save the corresponding timestamp as a string for every recorded frame within the AVI container.
To read out the MetaData you can implement the CVB Notify Interface (INotify
) of the Driver.dll in your own application. If you prefer the Grabber OCX you can use the ImageNotificationString
Event. As examples the VCMovie2PlayerExample and the CSMovie2PlayerExample are included in Movie2.
[in,out] | UseMetaData | TRUE if meta data should be written to the AVI file, FALSE otherwise. |
TRUE
if meta data should be written to the AVI file, FALSE
otherwise. Visual Basic - VB Movie2 OCX Example
Visual C++ - VC Movie2 OCX Example