Video device list can not be updated
Posted: Mon Mar 09, 2020 12:46 pm
There is a procedure WebCam.CreateVideoDeviceList; that creates video device list. The problem is that it is called only on the start of a program. So if a new web camera was attached via USB port after the start of your program you can't use it.
I had to make a workaround by creating a new procedure:
Is there any other way to udate video device list?
If no - could you please add this procedure to the sources?
Thanks in advance!
I had to make a workaround by creating a new procedure:
Code: Select all
TRVCamera.UpdateVideoDeviceList;
begin
WebCam.CreateVideoDeviceList;
end;
If no - could you please add this procedure to the sources?
Thanks in advance!