ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Video functions
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
VideoListDriver (Function)
In french: VidéoListeDriver
Lists the video capture drivers installed on the current computer.
Example
// Find out the video drivers installed
// Display them in LIST_DriverList
ListAdd(LIST_DriverList, VideoListDriver(viDirectShow))
Syntax
<Result> = VideoListDriver([<Technology used>])
<Result>: Character string
List of video drivers installed on the computer, in the following format:
<Name of driver 1> + TAB + <Version of driver 1> + CR + ...
<Name of driver N> + TAB + <Version of driver N>
Where:
  • <Name of driver 1> ... <Name of driver N> correspond to the name of the video drivers,
  • <Version of driver 1> ... <Version of driver N> correspond to the version of the driver.
<Technology used>: Integer constant
Type of technology used to list the drivers:
viDirectShowTechnology used: Direct Show.
This constant must be used:
  • to list the drivers corresponding to the different cameras installed (on a tablet for example).
  • to select a driver used in a Conference control (StreamChangeDriver).
viVideoForWindows
(Default value)
Technology used: Video for Windows

Remarks
  • To display the list of video drivers in a List Box or Combo Box control, use the following syntax:
    ListAdd(<Name of List Box control>, <Result)

    where
    ListAdd(<Name of List Box control>, VideoListDriver())
  • This function is equivalent to CameraListDriver.
Component: wd290obj.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help