atem-connection
Advanced tools
Comparing version 2.1.1-nightly-20210226-195850-771bf53.0 to 2.2.0-nightly-20210228-225858-7ccc292.0
@@ -115,2 +115,4 @@ /// <reference types="node" /> | ||
setUpstreamKeyerOnAir(onAir: boolean, me?: number, keyer?: number): Promise<void>; | ||
runUpstreamKeyerFlyKeyTo(mixEffect: number, upstreamKeyerId: number, keyFrameId: Enums.FlyKeyKeyFrame.A | Enums.FlyKeyKeyFrame.B | Enums.FlyKeyKeyFrame.Full): Promise<void>; | ||
runUpstreamKeyerFlyKeyToInfinite(mixEffect: number, upstreamKeyerId: number, direction: Enums.FlyKeyDirection): Promise<void>; | ||
setUpstreamKeyerType(newProps: Partial<USK.UpstreamKeyerTypeSettings>, me?: number, keyer?: number): Promise<void>; | ||
@@ -117,0 +119,0 @@ uploadStill(index: number, data: Buffer, name: string, description: string): Promise<DataTransfer>; |
@@ -403,2 +403,10 @@ "use strict"; | ||
} | ||
runUpstreamKeyerFlyKeyTo(mixEffect, upstreamKeyerId, keyFrameId) { | ||
const command = new Commands.MixEffectKeyRunToCommand(mixEffect, upstreamKeyerId, keyFrameId, 0); | ||
return this.sendCommand(command); | ||
} | ||
runUpstreamKeyerFlyKeyToInfinite(mixEffect, upstreamKeyerId, direction) { | ||
const command = new Commands.MixEffectKeyRunToCommand(mixEffect, upstreamKeyerId, Enums.FlyKeyKeyFrame.RunToInfinite, direction); | ||
return this.sendCommand(command); | ||
} | ||
setUpstreamKeyerType(newProps, me = 0, keyer = 0) { | ||
@@ -405,0 +413,0 @@ const command = new Commands.MixEffectKeyTypeSetCommand(me, keyer); |
@@ -9,2 +9,3 @@ export * from './MixEffectKeyChromaCommand'; | ||
export * from './MixEffectKeyMaskSetCommand'; | ||
export * from './MixEffectKeyRunToCommand'; | ||
export * from './MixEffectKeyOnAirCommand'; | ||
@@ -11,0 +12,0 @@ export * from './MixEffectKeyPatternCommand'; |
@@ -12,2 +12,3 @@ "use strict"; | ||
tslib_1.__exportStar(require("./MixEffectKeyMaskSetCommand"), exports); | ||
tslib_1.__exportStar(require("./MixEffectKeyRunToCommand"), exports); | ||
tslib_1.__exportStar(require("./MixEffectKeyOnAirCommand"), exports); | ||
@@ -14,0 +15,0 @@ tslib_1.__exportStar(require("./MixEffectKeyPatternCommand"), exports); |
@@ -162,2 +162,21 @@ export declare enum Model { | ||
} | ||
export declare enum FlyKeyKeyFrame { | ||
None = 0, | ||
A = 1, | ||
B = 2, | ||
Full = 3, | ||
RunToInfinite = 4 | ||
} | ||
export declare enum FlyKeyDirection { | ||
CentreOfKey = 0, | ||
TopLeft = 1, | ||
TopCentre = 2, | ||
TopRight = 3, | ||
MiddleLeft = 4, | ||
MiddleCentre = 5, | ||
MiddleRight = 6, | ||
BottomLeft = 7, | ||
BottomCentre = 8, | ||
BottomRight = 9 | ||
} | ||
export declare enum SuperSourceArtOption { | ||
@@ -164,0 +183,0 @@ Background = 0, |
@@ -179,2 +179,23 @@ "use strict"; | ||
})(MixEffectKeyType = exports.MixEffectKeyType || (exports.MixEffectKeyType = {})); | ||
var FlyKeyKeyFrame; | ||
(function (FlyKeyKeyFrame) { | ||
FlyKeyKeyFrame[FlyKeyKeyFrame["None"] = 0] = "None"; | ||
FlyKeyKeyFrame[FlyKeyKeyFrame["A"] = 1] = "A"; | ||
FlyKeyKeyFrame[FlyKeyKeyFrame["B"] = 2] = "B"; | ||
FlyKeyKeyFrame[FlyKeyKeyFrame["Full"] = 3] = "Full"; | ||
FlyKeyKeyFrame[FlyKeyKeyFrame["RunToInfinite"] = 4] = "RunToInfinite"; | ||
})(FlyKeyKeyFrame = exports.FlyKeyKeyFrame || (exports.FlyKeyKeyFrame = {})); | ||
var FlyKeyDirection; | ||
(function (FlyKeyDirection) { | ||
FlyKeyDirection[FlyKeyDirection["CentreOfKey"] = 0] = "CentreOfKey"; | ||
FlyKeyDirection[FlyKeyDirection["TopLeft"] = 1] = "TopLeft"; | ||
FlyKeyDirection[FlyKeyDirection["TopCentre"] = 2] = "TopCentre"; | ||
FlyKeyDirection[FlyKeyDirection["TopRight"] = 3] = "TopRight"; | ||
FlyKeyDirection[FlyKeyDirection["MiddleLeft"] = 4] = "MiddleLeft"; | ||
FlyKeyDirection[FlyKeyDirection["MiddleCentre"] = 5] = "MiddleCentre"; | ||
FlyKeyDirection[FlyKeyDirection["MiddleRight"] = 6] = "MiddleRight"; | ||
FlyKeyDirection[FlyKeyDirection["BottomLeft"] = 7] = "BottomLeft"; | ||
FlyKeyDirection[FlyKeyDirection["BottomCentre"] = 8] = "BottomCentre"; | ||
FlyKeyDirection[FlyKeyDirection["BottomRight"] = 9] = "BottomRight"; | ||
})(FlyKeyDirection = exports.FlyKeyDirection || (exports.FlyKeyDirection = {})); | ||
var SuperSourceArtOption; | ||
@@ -181,0 +202,0 @@ (function (SuperSourceArtOption) { |
{ | ||
"name": "atem-connection", | ||
"version": "2.1.1-nightly-20210226-195850-771bf53.0", | ||
"version": "2.2.0-nightly-20210228-225858-7ccc292.0", | ||
"description": "Typescript Node.js library for connecting with an ATEM switcher.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
682787
436
9430