eyevinn-channel-engine-bridge
- Description:
Channel Engine Bridge enables seamless pushing of FAST channels from FAST Channel Engine to distribution platforms such as AWS MediaPackage and simplifies the process of pushing channels to a wide range of distribution networks.
- Copyright:
- 2025 Eyevinn Technology AB
- See:
-
- Online docs for further information
Methods
(async, static) createEyevinnChannelEngineBridgeInstance(context, body) → {EyevinnChannelEngineBridge}
- Description:
Create a new Channel Engine Bridge instance
Example
import { Context } from '@osaas/client-core';
import { createEyevinnChannelEngineBridgeInstance } from '@osaas/client-services';
const ctx = new Context();
const body: EyevinnChannelEngineBridgeConfig = { name: 'myinstance', ... };
const instance = await createEyevinnChannelEngineBridgeInstance(ctx, body);
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
EyevinnChannelEngineBridgeConfig | Service instance configuration |
Returns:
- Service instance
(async, static) getEyevinnChannelEngineBridgeInstance(context, name) → {EyevinnChannelEngineBridge}
- Description:
Get a Channel Engine Bridge instance
Example
import { Context } from '@osaas/client-core';
import { getEyevinnChannelEngineBridgeInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getEyevinnChannelEngineBridgeInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the channel-engine-bridge to be retrieved |
Returns:
- Service instance
(async, static) removeEyevinnChannelEngineBridgeInstance(context, name)
- Description:
Remove a Channel Engine Bridge instance
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the channel-engine-bridge to be removed |