Camera Properties

If I read the configuration of a camera in MC environment I get 20 Properties …

If I do the same thing in SC environment I only read 6 properties…

Why this difference in results and, above all, how do I have the “ProductID” properties in the SC environment? Also, the associated Recording Server does not contain the “Path” property (for storage) unlike in the MC environment

Many Thanks,

Frediano

It has always been like this. The Smart Client only has the properties that it itself has any use for. There is nothing in the Smart Client itself that uses the information like ‘ProductID’ for anything, so this is an example of things that the Management Client knows and the Smart Client doesn’t.

If you create a plugin where you need to use extra information you have a workaround of using the Configuration API

using VideoOS.Platform;
using VideoOS.Platform.ConfigurationItems;
..
Camera cameraConfig = new Camera(cameraItem.FQID);

Sorry for delay

Many thanks, it works fine

Frediano