|
|
|
|
- Use conditions
- Special cases
- Required permissions
VideoStop (Function) In french: VidéoArrête Stops playing or recording a video in a Camera control.
Warning
Starting with version 27, this function is deprecated for Android and iOS applications. This function is kept only for Camera controls created with earlier versions and with the "Version-26-compatible mode" option enabled ("General" tab of the control description window).
// 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 camera preview stream and the video recording. The corresponding file is generated. The specified Camera control becomes empty. | viStopCapture | Stops recording the video. The corresponding file is generated. | viStopDisplay | Stops the camera preview stream. The specified Camera control becomes empty. |
Remarks Use conditions This function requires a device equipped with a camera. It can also be used in the Android emulator. This function requires a device equipped with a camera. 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.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|