void SetAutostart(int enable)
|
Disables Automatic Start if enable is set to FALSE. Otherwise, auto start can be enabled using TRUE.
|
int GetAutostart()
|
Returns TRUE if Automatic Start is enabled, otherwise FALSE.
|
void SetLoopingMode(int mode)
|
Sets the Looping mode. See below for details.
|
int GetLoopingMode()
|
Returns the Looping mode. See below for details.
|
int GetVideoLoaded()
|
Returns TRUE if a video is already loaded.
|
int GetVideoRunning()
|
Returns TRUE if video Playback is active, otherwise FALSE.
|
void StartVideo()
|
Toggles the video Playback. Starts the video, when stopped and stops the video when it runs.
|
void StopVideo()
|
Stops video Playback.
|
time GetVideoLength()
|
Returns the Length of the video as time structure. The structure is filled up with the hours, minutes, and seconds. If no video is loaded, 0 is returned.
|
void SetVideoTime(time t)
|
Sets the current Time Position of the video playback. If no video is loaded, nothing happens. See below for further details.
|
time GetVideoTime()
|
Returns the current Time of the video playback.
|
void StartVideoBackward()
|
Starts playing the video backwards. Is only available with QuickTime video files.
|
void SetVideoStartTime(time t)
|
Sets the Start Time of the video. The video starts playing from this position.
|
time GetVideoStartTime()
|
Returns the position at which the video starts playing.
|
void SetVideoEndTime(time t)
|
Sets the End Time of the video. The video ends playing at this position.
|
time GetVideoEndTime()
|
Returns the position at which the video stops playing.
|
void SetVideoPlaybackRate(float rate)
|
Sets the Playback Rate of the video. E.g., a value of 2.0 means that the video will be running 2x faster than the original speed.
|
float GetVideoPlaybackRate()
|
Returns the current video Playback Rate.
|
void StepForward()
|
Steps the video one frame forward.
|
void StepBackward()
|
Steps the video one frame backward.
|
void SetStretchMode(int mode)
|
Returns the Stretch mode. See below for details.
|
int GetStretchMode()
|
Returns the Stretch mode. See below for details.
|
void SetGrayscale(int enable)
|
Disables Grayscale if enable is set to FALSE. Otherwise it can be enabled using TRUE.
|
int GetGrayscale()
|
Returns TRUE if Grayscale mode is enabled, otherwise FALSE.
|
void ToggleGrayscale()
|
Enables Grayscale mode or uses the default setting, depending on the current state.
|
void SetGreyscale(int enable)
|
Is the same as SetGrayscale(int enable).
|
int GetGreyscale()
|
Is the same as GetGreyscale().
|
void ToggleGreyscale()
|
Is the same as ToggleGreyscale().
|
void SetRgbw(int enable)
|
Disables the RGB-To-RGBW mode if enable is FALSE, otherwise it can be enabled using TRUE.
|
int GetRgbw()
|
Returns TRUE if RGB-To-RGBW mode is enabled, otherwise FALSE.
|
void ToggleRgbw()
|
Enables RGB-To-RGBW mode or uses the default setting, depending on the current state.
|
void SetFilteringMode(int mode)
|
Sets the Filtering mode. See below for details.
|
int GetFilteringMode()
|
Returns the Filtering mode. See below for details.
|