'meet' capability for WebSocket Token API

Overview

Provides an interface for the meet server to interact with era.

Server requests

Call transcription

Transcription of the specified conference recording is performed. File names for each participant and the start time of the recording are passed in the parameter.

Example
[
  "transcript_records",
  {
    "qid": 123,
    "fileData": [{
                  "username": "user1",
                  "filename": "test.wav",
                  "starttime": "123123123"
                }],
    "parentNode": "meet1@127.0.0.1"
  }
]
Response example
[
  "transcript_records_result",
  {
    "qid":123,
    "result": "ok",
    "data": {"text": "some_text"}
  }
]

Response Parameters:

  • text - The result of the transcription of the conference notes.

Changing the domain for an established connection

The domain is changed to the one specified in the parameter. Repeated change, as well as change to an empty value is prohibited. Execution is possible only by the meet server launched through the role era - meet.

Example
[
  "change_domain",
  {
    "qid": 0.1234,
    "domain": "x.domain.ru"
  }
]