Updated Configure the cameras (markdown)

This commit is contained in:
hipersayanX 2021-06-19 14:03:35 -03:00
parent 57966d5268
commit 2600790c64

View file

@ -14,7 +14,15 @@ The command will return a message like:
Device created as AkVCamVideoDevice0 Device created as AkVCamVideoDevice0
``` ```
Keep track of **AkVCamVideoDevice0**, that will be the identifier of the virtual device and you will need it for the following operations. The created device is a blank device without any defined capture formats, that meaning it won't work as-is. Keep track of **AkVCamVideoDevice0** (the device ID), that will be the identifier of the virtual device and you will need it for the following operations.
You can also set a custom device ID with for example:
```
AkVCamManager add-device -i FakeCamera0 "Virtual Camera"
```
This way the device will be created as **FakeCamera0** instead of using the default prefix and numeration (AkVCamVideoDeviceNUMBER), there is no particular rule for the custom ID, you can use any character combination at your choice.
The created device is a blank device without any defined capture formats, that meaning it won't work as-is.
Now, you must define a at least one capture format for that device, as: Now, you must define a at least one capture format for that device, as:
``` ```