dash-industry-forum-livesim2
- Description:
Elevate your streaming with livesim2, the next-gen DASH Live Source Simulator, offering infinite live streams, flexible content handling, and on-the-fly subtitles in multiple languages. Perfect for testing and demo purposes.
- Copyright:
- 2025 Eyevinn Technology AB
Methods
(async, static) createDashIndustryForumLivesim2Instance(context, body) → {DashIndustryForumLivesim2}
- Description:
Create a new livesim2 instance
Example
import { Context } from '@osaas/client-core';
import { createDashIndustryForumLivesim2Instance } from '@osaas/client-services';
const ctx = new Context();
const body: DashIndustryForumLivesim2Config = { name: 'myinstance', ... };
const instance = await createDashIndustryForumLivesim2Instance(ctx, body);
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
DashIndustryForumLivesim2Config | Service instance configuration |
Returns:
- Service instance
(async, static) getDashIndustryForumLivesim2Instance(context, name) → {DashIndustryForumLivesim2}
- Description:
Get a livesim2 instance
Example
import { Context } from '@osaas/client-core';
import { getDashIndustryForumLivesim2Instance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getDashIndustryForumLivesim2Instance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the livesimulators to be retrieved |
Returns:
- Service instance
(async, static) removeDashIndustryForumLivesim2Instance(context, name)
- Description:
Remove a livesim2 instance
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the livesimulators to be removed |