eyevinn-just-go-live
- Description:
Effortlessly stream live with Just Go Live. One-click setup, generate RTMP URLs for ease, and engage viewers instantly with HLS streaming. Simplify your broadcasting journey with no fuss, just go live!
- Copyright:
- 2025 Eyevinn Technology AB
Methods
(async, static) createEyevinnJustGoLiveInstance(context, body) → {EyevinnJustGoLive}
- Description:
Create a new Just Go Live instance
Example
import { Context } from '@osaas/client-core';
import { createEyevinnJustGoLiveInstance } from '@osaas/client-services';
const ctx = new Context();
const body: EyevinnJustGoLiveConfig = { name: 'myinstance', ... };
const instance = await createEyevinnJustGoLiveInstance(ctx, body);
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
EyevinnJustGoLiveConfig | Service instance configuration |
Returns:
- Service instance
- Type
- EyevinnJustGoLive
(async, static) getEyevinnJustGoLiveInstance(context, name) → {EyevinnJustGoLive}
- Description:
Get a Just Go Live instance
Example
import { Context } from '@osaas/client-core';
import { getEyevinnJustGoLiveInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getEyevinnJustGoLiveInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the application to be retrieved |
Returns:
- Service instance
- Type
- EyevinnJustGoLive
(async, static) removeEyevinnJustGoLiveInstance(context, name)
- Description:
Remove a Just Go Live instance
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the application to be removed |