0.4.1 • Published 1 year ago

@eyevinn/schedule-service-adapter v0.4.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Eyevinn Schedule Service Adapter

A Channel Engine adapter to get channels and schedules from an Eyevinn Schedule Service.

Installation

npm install --save @eyevinn/schedule-service-adapter

Usage

Initiate the Eyevinn Channel Engine with the adapter for the Eyevinn Schedule Service:

const DemoChannelEngine = require("eyevinn-channel-engine");
const { ChannelManager, AssetManager, StreamSwitchManager } = require("@eyevinn/schedule-service-adapter");

const channelManager = new ChannelManager({
  scheduleServiceEndpoint: new URL("https://schedule.vc.eyevinn.technology/api/v1")
});
const assetManager = new AssetManager({
  channelManager: channelManager,
});
const streamSwitchManager = new StreamSwitchManager({
  channelManager: channelManager,
});

const run = async () => {
  await channelManager.init();

  const engine = new DemoChannelEngine(assetManager, {
    channelManager: channelManager,
    streamSwitchManager: streamSwitchManager,
  });
  engine.start();
  engine.listen(8000);
};
run();

About Eyevinn Technology

Eyevinn Technology is an independent consultant firm specialized in video and streaming. Independent in a way that we are not commercially tied to any platform or technology vendor.

At Eyevinn, every software developer consultant has a dedicated budget reserved for open source development and contribution to the open source community. This give us room for innovation, team building and personal competence development. And also gives us as a company a way to contribute back to the open source community.

Want to know more about Eyevinn and how it is to work here. Contact us at work@eyevinn.se!

0.4.1

1 year ago

0.4.0

1 year ago

0.3.2

1 year ago

0.3.3

1 year ago

0.3.0

2 years ago

0.1.2

2 years ago

0.2.0

2 years ago

0.1.1

3 years ago

0.3.1

2 years ago

0.1.3

2 years ago

0.1.0

3 years ago