Skip to main content
Base Node Node inspector for a Zoom (Listen) node

Parameters

Zoom Session
object
required
Active session from a Zoom (Join) node.
Silence Threshold
integer
default:"2000"
required
Duration of silence (in milliseconds) to mark end of turn.

Credentials

API Key Credential
API Key Credential
required
Select an API Key Credential for the Deepgram API key used by this node.

Inputs

Input
any
Inputs are ignored; the input port is only for graph connectivity.

Outputs

Output
array[json]
The transcript of the latest spoken turn (i.e. since the last time a Zoom (Listen) node is called for the same zoom session), returned as an array of objects.
Sample output
[
  {
    "speaker": "1",
    "text": "We can start the review now.",
    "start_time": 3.1,
    "end_time": 6.7
  },
  {
    "speaker": "Delegate A",
    "text": "I have the numbers ready.",
    "start_time": 7.2,
    "end_time": 10.4
  }
]
Each transcript segment includes the following fields:
FieldDescription
speakerSpeaker index like "0" or "1", or a delegate name.
textSpeech transcript.
start_timeSegment start time in seconds.
end_timeSegment end time in seconds.