@joergmittaglawo/dmvconfig
Version:
DMV Configuration scripts for Lawo V__matrix Distributed Multiviewers.
38 lines (37 loc) • 1.1 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Enums = exports.All = void 0;
const VScript = require("vscript");
const _Time = require("./Time");
const _Video = require("./Video");
class All {
constructor(raw) {
this.raw = raw;
}
get t_src() {
return new VScript.duplexKeyword(this, "t_src", { lift: _Time.lift.Source, lower: _Time.lower.Source });
}
get standard() {
return new VScript.duplexKeyword(this, "standard");
}
get pattern() {
return new VScript.rwKeyword(this, "pattern");
}
get cnt0_full() {
return new VScript.rwKeyword(this, "cnt0_full");
}
get cnt1_full() {
return new VScript.rwKeyword(this, "cnt1_full");
}
get cnt0_horz() {
return new VScript.rwKeyword(this, "cnt0_horz");
}
get cnt1_horz() {
return new VScript.rwKeyword(this, "cnt1_horz");
}
get output() { return new _Video.Essence(this.raw.find("output")); }
}
exports.All = All;
exports.Enums = {
TestPatternSelect: ["Colorbars100", "RP198", "Counters"]
};