eyevinn-srt-whep
- Description:
SRT to WHEP application ingests MPEG-TS over SRT stream and outputs to WebRTC using WHEP signaling protocol, supporting MacOS and Ubuntu. No video transcoding, SDP offer/answer exchange focus, and compliance with popular production software. Get yours now!
- Copyright:
- 2025 Eyevinn Technology AB
- See:
-
- Online docs for further information
Methods
(async, static) createEyevinnSrtWhepInstance(context, body) → {EyevinnSrtWhep}
- Description:
Create a new SRT WHEP Bridge instance
Example
import { Context } from '@osaas/client-core';
import { createEyevinnSrtWhepInstance } from '@osaas/client-services';
const ctx = new Context();
const body: EyevinnSrtWhepConfig = { name: 'myinstance', ... };
const instance = await createEyevinnSrtWhepInstance(ctx, body);
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
EyevinnSrtWhepConfig | Service instance configuration |
Returns:
- Service instance
- Type
- EyevinnSrtWhep
(async, static) getEyevinnSrtWhepInstance(context, name) → {EyevinnSrtWhep}
- Description:
Get a SRT WHEP Bridge instance
Example
import { Context } from '@osaas/client-core';
import { getEyevinnSrtWhepInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getEyevinnSrtWhepInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the bridge to be retrieved |
Returns:
- Service instance
- Type
- EyevinnSrtWhep
(async, static) removeEyevinnSrtWhepInstance(context, name)
- Description:
Remove a SRT WHEP Bridge instance
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the bridge to be removed |