use a constant
This commit is contained in:
parent
8bcf0f0838
commit
572f15522f
1 changed files with 4 additions and 1 deletions
|
@ -23,6 +23,9 @@ export function getConfigLivestreamUrl() {
|
||||||
return SdkConfig.get()["audioStreamUrl"];
|
return SdkConfig.get()["audioStreamUrl"];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Dummy rtmp URL used to signal that we want a special audio-only stream
|
||||||
|
const AUDIOSTREAM_DUMMY_URL = 'rtmp://audiostream.dummy/';
|
||||||
|
|
||||||
async function createLiveStream(roomId: string) {
|
async function createLiveStream(roomId: string) {
|
||||||
const openIdToken = await MatrixClientPeg.get().getOpenIdToken();
|
const openIdToken = await MatrixClientPeg.get().getOpenIdToken();
|
||||||
|
|
||||||
|
@ -47,6 +50,6 @@ export async function startJitsiAudioLivestream(widgetMessaging: ClientWidgetApi
|
||||||
const streamId = await createLiveStream(roomId);
|
const streamId = await createLiveStream(roomId);
|
||||||
|
|
||||||
await widgetMessaging.transport.send(ElementWidgetActions.StartLiveStream, {
|
await widgetMessaging.transport.send(ElementWidgetActions.StartLiveStream, {
|
||||||
rtmpStreamKey: 'rtmp://audiostream.dummy/' + streamId,
|
rtmpStreamKey: AUDIOSTREAM_DUMMY_URL + streamId,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue