Specifications
SelectionStartMsec
SelectionEndMsec
To Set:
unsigned long msec = 5000;
VideoReDo.SelectionEndMsec = msec; // Position the end selection marker to 5 seconds.
To Get:
long msec = VideoReDo.SelectionEndMsec;
These two properties can be used to read or set the start and end selection markers. If both markers are to
be set, it is recommended that the
SelectScene() method be used.
ThumbnailDisplay
To Set:
BOOL bThumbnailOn = 1;
VideoReDo.ThumbnailDisplay = bThumbnailOn; // Turn on thumbnails.
To Get:
BOOL b = VideoReDo.ThumbnailDisplay;
Property to turn on (TRUE) or off (FALSE) the thumbnail display window.
ThumbnailInterval
To Set:
long intervalMsec = 1000;
VideoReDo.ThumbnailInterval = intervalMsec; // Set current interval to 1 sec.
To Get:
long intervalMsec = VideoReDo.ThumbnailInterval;
Gets or sets the current thumbnail interval in msec. This property does not turn on, or off, the thumbnail
display. Use the
ThumbNailDisplay property for that purpose. To set the interval to single frame, specify an
intervalMsec of 0.
VersionNumber
To Set:
This property is read-only.
To Get:
BSTR str = VideoReDo.VersionNumber
Return the current version and build for VideoReDo as a COM string. The format is result is x.y.z.bbb -
<Build Date>, where:
x = major version
y = minor version
z = release number
bbb = build number
For example:
wcript.echo(VideoReDo.VersionNumber) display: