ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

  • Use conditions
  • Special cases
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
VideoStop (Function)
In french: VidéoArrête
Stops playing or recording a video in a Camera control.
Example
// Stops playing the video
// in the "CAM_Kitchen" control
ResStop = VideoStop(CAM_Kitchen, viStopDisplay)
Syntax
<Result> = VideoStop(<Camera control> [, <Action to stop>])
<Result>: Boolean
  • True if the video displayed or recorded in the Camera control is stopped properly,
  • False if an error occurred. To get more details on the error, use ErrorInfo.
<Camera control>: Control name
Name of the Camera control to be used.
<Action to stop>: Optional integer constant
Type of action to stop:
viStopAll
(Default value)
Stops the display and Record of the video sequence. The generated file is available. The specified Camera control becomes empty.
viStopCaptureStop the Record of the video sequence. The generated file is available.
viStopDisplayStops displaying the video. The specified Camera control becomes empty.
Remarks

Use conditions

  • Windows To use this function, a "camera" must be connected to the current computer.
Remark: This function is equivalent to CameraStop.

Special cases

  • To save the video captured by a "Web camera", use VideoCapture.
  • To display the video captured by a "Web camera" in a Camera control, use VideoDisplay.
Component: wd270obj.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment