Package Exports
- casparcg-connection
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (casparcg-connection) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
casparcg-connection
##Introduction
CasparCG is an open source graphics- and video server for broadcast and streaming productions. This library lets you connect and interact with CasparCG servers from node.js in Javascript.
- node.js
- npm package
- TypeScript/Javascript with Typings and Sourcemaps
- ES5 or ES6
- API docs
- CasparCG AMCP 2.1 protocol implemented
- Parsing and validation of command parameters
- Parsing of response data
- Queueing of commands
##Example
const {CasparCG} = require('casparcg-connection');
var connection = new CasparCG();
connection.play(1, 1, 'amb');
##Documentation Examples and tutorials in the wiki.
Visit https://superflytv.github.io/casparcg-connection/ for API documentation.
##About
Created and published by SuperFly.tv
##Roadmap
- AMCP 2.1 parity
- Parsing of return data to Objects and Arrays
- Validating of responses against AMCP protocol
- OSC events parsing
- Smart queue with linked and grouped commands
##Acknowledgements:
- Many thanks to SVT for the CasparCG project
- Inspired by https://github.com/respectTheCode/node-caspar-cg