channel-engine
- Description:
Based on VOD2Live Technology you can generate a numerous amounts of FAST channels with a fraction of energy consumption compared to live transcoded FAST channels
- Copyright:
- 2025 Eyevinn Technology AB
- See:
-
- Online docs for further information
Methods
(async, static) createChannelEngineInstance(context, body) → {ChannelEngine}
- Description:
Create a new FAST Channel Engine instance
Example
import { Context } from '@osaas/client-core';
import { createChannelEngineInstance } from '@osaas/client-services';
const ctx = new Context();
const body: ChannelEngineConfig = { name: 'myinstance', ... };
const instance = await createChannelEngineInstance(ctx, body);
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
ChannelEngineConfig | Service instance configuration |
Returns:
- Service instance
- Type
- ChannelEngine
(async, static) getChannelEngineInstance(context, name) → {ChannelEngine}
- Description:
Get a FAST Channel Engine instance
Example
import { Context } from '@osaas/client-core';
import { getChannelEngineInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getChannelEngineInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the channel to be retrieved |
Returns:
- Service instance
- Type
- ChannelEngine
(async, static) removeChannelEngineInstance(context, name)
- Description:
Remove a FAST Channel Engine instance
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the channel to be removed |