realeyes-media-moe-replay
- Description:
Transform live video streams instantly with MOE REPlay. Perfect for creating live HLS manifests on the fly. Enhance your streaming service now!
- Copyright:
- 2025 Eyevinn Technology AB
Methods
(async, static) createRealeyesMediaMoeReplayInstance(context, body) → {RealeyesMediaMoeReplay}
- Description:
Create a new MOE Replay instance
Example
import { Context } from '@osaas/client-core';
import { createRealeyesMediaMoeReplayInstance } from '@osaas/client-services';
const ctx = new Context();
const body: RealeyesMediaMoeReplayConfig = { name: 'myinstance', ... };
const instance = await createRealeyesMediaMoeReplayInstance(ctx, body);
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
RealeyesMediaMoeReplayConfig | Service instance configuration |
Returns:
- Service instance
(async, static) getRealeyesMediaMoeReplayInstance(context, name) → {RealeyesMediaMoeReplay}
- Description:
Get a MOE Replay instance
Example
import { Context } from '@osaas/client-core';
import { getRealeyesMediaMoeReplayInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getRealeyesMediaMoeReplayInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the moe-replay to be retrieved |
Returns:
- Service instance
(async, static) removeRealeyesMediaMoeReplayInstance(context, name)
- Description:
Remove a MOE Replay instance
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the moe-replay to be removed |