ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Video functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Connects the "Camera" control to a specific driver for video capture.
Caution:
  • To use this function, a "camera" must be connected to the current computer.
  • To find out the list of drivers for video capture installed on the current computer, use VideoListDriver (associated with the viDirectShow constant). To determine which driver is currently associated with a Camera control, use the Driver property.
Example
// Affiche la liste des drivers vidéo disponibles
// dans le champ LISTE_DriverVidéo
LISTE_DriverVidéo.Ajoute(VideoListDriver(viDirectShow))
// Utilise le deuxième driver Vidéo
IF CAM_Camera1.ChangeDriver(LISTE_DriverVidéo[2]) = False THEN
	Error("Changement de driver impossible: " + CR + ...
	ErrorInfo())
END
Syntax
<Result> = <Camera control>.SetDriver(<Identifier of video driver>)
<Result>: Boolean
  • True if the video driver associated with the control was modified,
  • False if a problem occurs. To get more details on the error, use ErrorInfo.
<Camera control>: Control name
Name of the Camera control to be used.
<Identifier of video driver>: Character string
Identifier of video driver to use. This identifier has the following format:
<Nom du driver> + TAB + <Version du driver>
This identifier corresponds to the list format returned by VideoListDriver (associated with the viDirectShow constant).
Component: wd300obj.dll
Minimum version required
  • Version 23
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/20/2024

Send a report | Local help