Multichannel streaming not providing separate channel transcriptions #245
-
I am creating a transcription live connection like so:
Based on the docs, the transcription data should include an array field The responses that I receive via the WebSocket How can I obtains separate transcriptions for each channel, when streaming the data? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The |
Beta Was this translation helpful? Give feedback.
The
channel_index
field should be the key for this - the second number is the number of channels (should be "2" here), and the first number is the channel that the transcript in the message belongs to, so you should see messages with[0, 2]
for transcription of the 1st (left) channel, and[1, 2]
for transcription of the second (right) channel.