From 2600790c6402d766a9e59308c72b0bdf59d7d1fe Mon Sep 17 00:00:00 2001 From: hipersayanX Date: Sat, 19 Jun 2021 14:03:35 -0300 Subject: [PATCH] Updated Configure the cameras (markdown) --- Configure-the-cameras.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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: ```