Giter VIP home page Giter VIP logo

node-applest-atem's Introduction

node-applest-atem npm version Dependency Status devDependency Status

A module to control Blackmagic Design ATEM Switchers.

Installation

Install this module using npm. Note: this module name is applest-atem

$ npm install applest-atem --save

Recent changes

  • Workaround from 0.1.x Set forceOldStyle option to atem constructor if you upgrade this library from from 0.1.x. state returns extract 1ME stats.
var atem = new ATEM({
  forceOldStyle: true
});

Usage

var ATEM = require('applest-atem');

var atem = new ATEM();
atem.connect('192.168.1.220'); // Replace your ATEM switcher. address.

atem.on('connect', function() {
  atem.changeProgramInput(1); // ME1(0)
  atem.changePreviewInput(2); // ME1(0)
  atem.autoTransition(); // ME1(0)
  atem.changeProgramInput(3, 1); // ME2(1)
});

atem.on('stateChanged', function(err, state) {
  console.log(state); // catch the ATEM state.
});
console.log(atem.state); // or use this.

Events

  • connect() It will called on receive first ping packet from ATEM.

  • disconnect() It will called on detect that it cannot communicate to ATEM in RECONNECT_INTERVAL seconds.

  • ping() It will called on receive ping packet from ATEM at an interval of one second.

  • stateChanged(err, state) It will called on receive state packet from ATEM.

File Uploader Usage

var ATEM = require('applest-atem');

var atem = new ATEM();
atem.connect('192.168.1.220');
atem.once('stateChanged', function (err, state) { // Delay few seconds from connecting.
  uploader = new ATEM.FileUploader(atem); // Pass the atem instance.
  uploader.uploadFromPNGFile('/Users/Sakura/Desktop/FHD.png'); // Pass a path of valid PNG file.
});

Demo

See live-controller.

Debug

Set ATEM_DEBUG=true environment variable, you can see raw packet.

$ ATEM_DEBUG=true coffee debug.coffee
SEND <Buffer 10 14 53 ab 00 00 00 00 00 3a 00 00 01 00 00 00 00 00 00 00>
SEND <Buffer 80 0c 53 ab 00 00 00 00 00 03 00 00>
SEND <Buffer 80 0c 53 ab 00 00 00 00 00 03 00 00>
SEND <Buffer 80 0c 80 0f 00 01 00 00 00 41 00 00>
RECV _ver(12) <Buffer 00 0c 90 60 5f 76 65 72 00 02 00 10>...

Test

This module run tests by mocha. You can run the test only if you have ATEM switchers.

$ cake test

Use ATEM_ADDR or ATEM_PORT environment variables if you want to use specific ip address or port.

$ ATEM_ADDR=192.168.1.220 ATEM_PORT=9910 cake test

Example

Contributing

  1. Fork it ( https://github.com/applest/node-applest-atem )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Add your feature and write a test
  4. Commit your changes (git commit -am 'Add some feature')
  5. Push to the branch (git push origin my-new-feature)
  6. Create new Pull Request

License

The MIT License (MIT)

Copyright (c) 2015 Yusei Yamanaka (miyukki)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

node-applest-atem's People

Contributors

craftbyte avatar jcspencer avatar miyukki avatar ob3rg avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

node-applest-atem's Issues

should reconnect instantiate a new socket on every attempt?

I see that every time a connection is attempted a new udp socket is created. Should this be the case? Shouldn't the hello command just be sent out again only?

Also, I don't believe it's necessary do a manual bind since node auto-binds to a random port when you send out your first packets.

KEY STATES

how Upstreamkeys works?

atem.changeUpstreamKeyState(1, 3);

scoping issues

I'm running into issues using this library in my project. When I call prototype functions like autoTransitions() from a callback where this is not the original ATEM object I get errors. Might be something having to do with CoffeeScript. It's making this library unusable in my project because I can't call prototype methods from outside the ATEM class context.

module.exports = function(otherThing){
  var ATEM = require('applest-atem');
  var atem = new ATEM();

  atem.on('connect', function() {
        setInterval(function() {
            atem.autoTransition(); //THIS WORKS
        }, 1000)
    });

  otherThing.on('someEvent',function(){
    atem.autoTransition(); //DOES NOT WORK
  });

  return atem;
}

can't install via NPM

i got sh: build: command not found error at postinstall stage when i run npm i applest-atem

macOS and Raspbian both

ATEM dead if send command quickly

If setInterval send atem.changeTransitionPosition(num) quickly like 15ms after a few minutes, The ATEM dead.

If change transition position by hand on the blackmagic's Broadcast Panel, the interval is faster than 15ms, but The ATEM is fine.

I don't test other command have same issue.

uploadFromPNGFile not working with ATEM Mini Pro?

The connection to the ATEM Mini Pro is working fine. Changing inputs etc works as expected but when I try to use the uploadFromPNGFile method, it doesn't seem to be working.

When I manually add an image in the media pool and run the code, it only removes the image I manually uploaded but the one I uploaded with code does not appear.
Path is correct and I'm not getting any errors.

Changing an input leads to several statechanged Events

I am using the actual version of this library. If I change e.g. the input of the programbus then the statechanged event seems to execute several times. It would be good to have the statechanged event execute only once.

Thankyou

Reconnect on failure?

I'm using this library, and it is working great except for one thing. If I lose connection to the switcher, my script just hangs. There is no error, and no attempt to re-connect. Am I missing something simple here? Thank you.

No disconnect method?

Running macros and watching the net traffic with WireShark.

using:
connect('192.168.0.6')
runMacro(0)

Works but traffic continues from the NodeJS client to/from the host and after a while the vendor provided UI stops working. How to "disconnect" from the host and stop the net traffic?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.