@joergmittaglawo/dmvconfig
Version:
DMV Configuration scripts for Lawo V__matrix Distributed Multiviewers.
47 lines (43 loc) • 911 B
JavaScript
/**
* @file The Monitoring Objects for the RTVE DMV Cluster
*
* @version 0.0.0-alpha.0
* @date 2020-07-17
* @author Mittag, Jörg (Lawo) <joerg.mittag@lawo.com>
*/
/**
* The number of Monitoring Objects for the RTVE DMV Cluster
*
* @readonly
* @constant {number}
*/
const NUMBER_OF_MOS = 400;
/**
* The Monitoring Objects for the RTVE DMV Cluster
*
* @private
* @readonly
* @constant {object}
*/
const MOS = Array.from(
{ length: NUMBER_OF_MOS },
() => (
{
audio: [
{
channels: {
start: 0,
num: 4,
},
},
{
channels: {
start: 4,
num: 4,
},
},
],
}
),
);
module.exports = MOS;