eyevinn-channel-scheduler

Namespace

eyevinn-channel-scheduler

Description:
  • Streamline your video content scheduling with Channel Scheduler! Experience a professional broadcast-style interface to create and manage linear TV channel schedules in real-time. Ideal for seamless online broadcast management!

Author:
See:

Methods

(async, static) createEyevinnChannelSchedulerInstance(context, body) → {EyevinnChannelScheduler}

Description:
  • Create a new Channel Engine Scheduler instance

Example
import { Context } from '@osaas/client-core';
import { createEyevinnChannelSchedulerInstance } from '@osaas/client-services';

const ctx = new Context();
const body: EyevinnChannelSchedulerConfig = { name: 'myinstance', ... };
const instance = await createEyevinnChannelSchedulerInstance(ctx, body);
console.log(instance.url);
Parameters:
Name Type Description
context Context

Open Source Cloud configuration context

body EyevinnChannelSchedulerConfig

Service instance configuration

Returns:
  • Service instance
Type
EyevinnChannelScheduler

(async, static) getEyevinnChannelSchedulerInstance(context, name) → {EyevinnChannelScheduler}

Description:
  • Get a Channel Engine Scheduler instance

Example
import { Context } from '@osaas/client-core';
import { getEyevinnChannelSchedulerInstance } from '@osaas/client-services';

const ctx = new Context();
const instance = await getEyevinnChannelSchedulerInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
Name Type Description
context Context

Open Source Cloud configuration context

name string

Name of the scheduler to be retrieved

Returns:
  • Service instance
Type
EyevinnChannelScheduler

(async, static) removeEyevinnChannelSchedulerInstance(context, name)

Description:
  • Remove a Channel Engine Scheduler instance

Parameters:
Name Type Description
context Context

Open Source Cloud configuration context

name string

Name of the scheduler to be removed