diff --git a/Configure-the-cameras.md b/Configure-the-cameras.md index 9482f1c..18b08a9 100644 --- a/Configure-the-cameras.md +++ b/Configure-the-cameras.md @@ -14,7 +14,15 @@ The command will return a message like: 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: ```