Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

kiloview-ndi

Package Overview
Dependencies
Maintainers
3
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kiloview-ndi

Control the Kiloview N40 NDI encoder/decoder

  • 1.0.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
3
Created
Source

API package for Kiloview N40 NDI Encoder/decoder

Installation

npm install kiloview-ndi # OR yarn add kiloview-ndi

Easily control the converters over their simple API. Remember to add a user to the device, and give it HTTP API access.

Example

Usage example:

const kiloviewNDI = require('kiloview-ndi');
const converter = new kiloviewNDI('10.0.0.10', 'admin', 'admin');

// Toggle between encoder/decoder
async function toggle() {
	let mode = await converter.modeGet();

	if (mode.mode === 'decoder') {
		await converter.modeSwitch('encoder');
	} else {
		await converter.modeSwitch('decoder');
	}
}

toggle();

API methods currently implemented

  • modeGet()
  • modeSwitch(mode)
  • modeStatus()
  • decoderDiscoveryGet()
  • decoderCurrentStatus()
  • decoderCurrentSetPreset(id)
  • decoderCurrentSetUrl(name, url)
  • decoderPresetSetBlank(color)
  • encoderNdiStatus()
  • encoderNdiGetConfig()
  • encoderNdiSetConfig(config)
  • sysServerInfo()
  • sysReconnect()
  • sysReboot()
  • sysRestore()

FAQs

Package last updated on 26 Sep 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc