Specifications
SetQuietMode
Sets VideoReDo to run with a minimal screen interface
StartAdScan
Starts commercial detection of the currently open file. (Plus
only)
WriteProjectFile
Saves the current project file to disk.
Sample Script
Properties::
AudioAlert
Sets or gets the audio alert status
OpenedFilename
Gets the currently opened filename
OutputPercentComplete
Estimate of output percent complete
PlotMask
Sets or gets the size of the plot mask.
PreviewMode
Enable or disabled the preview mode.
SelectionEndMsec
Sets or gets the location of the start selection marker.
SelectionStartMsec
Sets or gets the location of the start selection marker.
ThumbnailDisplay
Enable or disable the thumbnail display.
ThumbnailInterval
Sets or gets the thumbnail interval
VersionNumber
Retrieves the current VideoReDo version number.
How To Start VideoReDo in Silent Mode:
To start VideoReDo in silent mode, create the "VideoReDoSilent" COM object instead of the "Application" object.
if quietMode then
' Start in silent mode
'
Set VideoReDoSilent = WScript.CreateObject( "VideoReDo.VideoReDoSilent" )
set VideoReDo = VideoReDoSilent.VRDInterface
else
' Start in windowed mode.
Set VideoReDo = WScript.CreateObject( "VideoReDo.Application" )
end if
BOOL AbortOutput( )
AddSceneMark( ) as Integer
Parameters:
none
Return Values:
Function returns non-zero (TRUE) if output was in progress prior to calling this function, otherwise zero (FALSE)
Description:
This command will instruct VideoReDo to stop the output process. Note that output occurs in a background thread
and you should not assume that the abort has completed when this call returns. Continue to monitor
IsOutputInProgress until that function returns false.
BOOL AddSceneMark( long sceneTimeMsec )
AddSceneMark( sceneTimeMsec as integer) as Integer
Parameters:
sceneTimeMsec
Time, in milliseconds, at which to place the scene marker.