datarhei-restreamer
- Description:
Introducing Restreamer: A free, self-hosting solution for seamless live streaming to multiple platforms like YouTube, Twitch, and more. Easy setup, diverse features, hardware support, and GDPR compliance make it a must-have.
- Copyright:
- 2025 Eyevinn Technology AB
Methods
(async, static) createDatarheiRestreamerInstance(context, body) → {DatarheiRestreamer}
- Description:
Create a new restreamer instance
Example
import { Context } from '@osaas/client-core';
import { createDatarheiRestreamerInstance } from '@osaas/client-services';
const ctx = new Context();
const body: DatarheiRestreamerConfig = { name: 'myinstance', ... };
const instance = await createDatarheiRestreamerInstance(ctx, body);
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
DatarheiRestreamerConfig | Service instance configuration |
Returns:
- Service instance
- Type
- DatarheiRestreamer
(async, static) getDatarheiRestreamerInstance(context, name) → {DatarheiRestreamer}
- Description:
Get a restreamer instance
Example
import { Context } from '@osaas/client-core';
import { getDatarheiRestreamerInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getDatarheiRestreamerInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the restreamer to be retrieved |
Returns:
- Service instance
- Type
- DatarheiRestreamer
(async, static) removeDatarheiRestreamerInstance(context, name)
- Description:
Remove a restreamer instance
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the restreamer to be removed |