@joergmittaglawo/dmvconfig
Version:
DMV Configuration scripts for Lawo V__matrix Distributed Multiviewers.
44 lines (40 loc) • 758 B
JavaScript
/**
* @file The Monitoring Objects for the Gamecreek OB 4 Celtic DMV.
*
* @version 0.0.0-alpha.0
* @date 2020-03-23
* @author Mittag, Jörg (Lawo) <joerg.mittag@lawo.com>
*/
/**
* The number of Monitoring Objects for the Gamecreek OB 4 Celtic DMV
*
* @readonly
* @constant {number}
*/
const NUMBER_OF_MOS = 672;
/**
* The Heads for the Gamecreek OB 4 Celtic DMV
*
* @private
* @readonly
* @constant {object}
*/
const MOS = Array.from(
{ length: NUMBER_OF_MOS },
(_, mo) => (
{
audio: Array.from(
{ length: 2 },
() => (
{
channels: {
start: 0,
num: 8,
},
}
),
),
}
),
);
module.exports = MOS;