void SetAutostart(int enable)
|
Disables Automatic Start if enable is set to 0 (FALSE). Otherwise, auto start can be enabled using 1 (TRUE).
|
int GetAutostart()
|
Returns 1 (TRUE) if Automatic Start is enabled, otherwise 0 (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 1 (TRUE) if a video is already loaded.
|
int GetVideoRunning()
|
Returns 1 (TRUE) if video Playback is active, otherwise 0 (FALSE).
|
void StartVideo()
|
Toggles the video Playback. Starts the video, when stopped and stops the video when it runs.
|
void StopVideo()
|
Stops video Playback.
|
timecode GetVideoLength()
|
Returns the Length of the video as timecode structure. If no video is loaded, 0 is returned.
|
void SetVideoTime(timecode tc)
|
Sets the current Time Position of the video playback. If no video is loaded, nothing happens. See below for further details.
|
timecode GetVideoTime()
|
Returns the current Time of the video playback.
|
void StartVideoBackward()
|
Starts playing the video backwards for compatible video files.
|
void SetVideoStartTime(timecode tc)
|
Sets the Start Time of the video. The video starts playing from this position.
|
timecode GetVideoStartTime()
|
Returns the position at which the video starts playing.
|
void SetVideoEndTime(timecode tc)
|
Sets the End Time of the video. The video ends playing at this position.
|
timecode 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 Playback Rate of the video.
|
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 0 (FALSE). Otherwise it can be enabled using 1 (TRUE).
|
int GetGrayscale()
|
Returns 1 (TRUE) if Grayscale mode is enabled, otherwise 0 (FALSE).
|
void ToggleGrayscale()
|
Enables Grayscale mode or uses the default setting, depending on the current state.
|
void SetRgbw(int enable)
|
Disables the RGB-To-RGBW mode if enable is 0 (FALSE), otherwise it can be enabled using 1 (TRUE).
|
int GetRgbw()
|
Returns 1 (TRUE) if RGB-To-RGBW mode is enabled, otherwise 0 (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.
|
void SetHue(float value)
|
Sets the Hue. Valid values for value range from -1.00 to 1.00.
|
float GetHue()
|
Returns the currently set float value for Hue.
|
void SetSaturation(float value)
|
Sets the Saturation. Valid values for value range from -1.00 to 1.00.
|
float GetSaturation()
|
Returns the currently set float value for Saturation.
|
void SetBrightness(float value)
|
Sets the Brightness. Valid values for value range from -1.00 to 1.00.
|
float GetBrightness()
|
Returns the currently set float value for Brightness.
|
void SetContrast(float value)
|
Sets the Contrast. Valid values for value range from -1.00 to 1.00.
|
float GetContrast()
|
Returns the currently set float value for Contrast.
|