Skip to content

Latest commit

 

History

History
45 lines (26 loc) · 1.25 KB

README.md

File metadata and controls

45 lines (26 loc) · 1.25 KB

Logo

Virtual Production Operating System

VPOS is a software framework for camera-side virtual production development. It is a module system, inspired by Robot Operating System (ROS) that enables developers to quickly build custom applications for VP data.

CC BY-NC-SA 4.0 License

Features

  • Intermodule and external event system via local SocketIO
  • Can be used to auto-start external software
  • Sample modules for Indiemark encoders, Cooke /i lens data, OSC output, and more
  • Runs on Windows or Linux, can be run on embedded platforms or Mini PCs

Usage/Examples

Vposlaunch.js is the launch file, and modules are launched from here. VPOS is launched with:

npm run start

Modules should be forked to be enabled, i.e.

///Data logger 
fork(path.join(__dirname, 'dataLogger.js'));

Each module lives in it's own .js or .ts file, and runs as a subprocess. Modules can communicate via SocketIO.

//Sending data to another module 
socket.emit("sendLonet2", sendLonetObject);//This sends through HW port to LONET2

///Receiving data from another module
socket.on("sendLonet2", (msg) => {
    console.log("Got " + msg);
});