eyevinn-join-live
- Description:
Elevate your live broadcasts with "Join Live"—a seamless web app for real-time streaming. Offering a professional editor interface, OBS Studio integration, and responsive design for any device.
- Copyright:
- 2025 Eyevinn Technology AB
- See:
-
- Online docs for further information
Methods
(async, static) createEyevinnJoinLiveInstance(context, body) → {EyevinnJoinLive}
- Description:
Create a new Join Live instance
Example
import { Context } from '@osaas/client-core';
import { createEyevinnJoinLiveInstance } from '@osaas/client-services';
const ctx = new Context();
const body: EyevinnJoinLiveConfig = { name: 'myinstance', ... };
const instance = await createEyevinnJoinLiveInstance(ctx, body);
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
EyevinnJoinLiveConfig | Service instance configuration |
Returns:
- Service instance
- Type
- EyevinnJoinLive
(async, static) getEyevinnJoinLiveInstance(context, name) → {EyevinnJoinLive}
- Description:
Get a Join Live instance
Example
import { Context } from '@osaas/client-core';
import { getEyevinnJoinLiveInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getEyevinnJoinLiveInstance(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
- EyevinnJoinLive
(async, static) removeEyevinnJoinLiveInstance(context, name)
- Description:
Remove a Join Live instance
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the application to be removed |