startHls

fun startHls(config: JSONObject, transcription: PostTranscriptionConfig)

This method can be used to start HLS (HTTP Live Streaming) for the meeting.

Events:

  • onHlsStateChanged — emitted when the HLS streaming state changes
  • onHlsStarted — emitted when the HLS streaming has started

Code Example:


meeting.startHls(
    null, // HLS config (use defaults)
    null  // post-transcription config
)

Parameters

config

Additional HLS configuration as a JSONObject, or null.

transcription

The PostTranscriptionConfig for post-stream transcription, or null.