RealtimeTTSPlayer
Methods
addEventListener
addEventListener(event: , callback: Function
): void
Adds a handler for the specified PlayerEvents event. Use only functions as handlers; anything except a function leads to the error and scenario termination when a handler is called.
Parameters
event:
Event class (i.e., PlayerEvents.PlaybackFinished)
callback:
Function
Handler function. A single parameter is passed - object with event information
Returns
type:
void
cancelContextRequest
cancelContextRequest(parameters: Object
): void
Use this to cancel a context, so that no more messages are generated for that context.
Parameters
parameters:
Object
Object provides the parameters directly to the Cartesia provider Cancel Context Request message. Find more information in the documentation.
Returns
type:
void
generationRequest
generationRequest(parameters: Object
): void
Append text to a Cartesia.RealtimeTTSPlayer.Use this to generate speech for a transcript.
Parameters
parameters:
Object
Object provides the parameters directly to the Cartesia provider Generation Request message. Find more information in the documentation.
Returns
type:
void
id
id(): string
Returns the player's id.
Returns
type:
string
pause
pause(): void
Pauses playback. To continue the playback use the Player.resume method.
Returns
type:
void
removeEventListener
removeEventListener(event: , callback: Function
): void
Removes a handler for the specified PlayerEvents event.
Parameters
event:
Event class (i.e., PlayerEvents.PlaybackFinished)
callback:
Function
OptionalOptional. Handler function. If not specified, all handler functions are removed
Returns
type:
void
sendMediaTo
sendMediaTo(mediaUnit: , parameters: ): void
Starts sending media from the player to the media unit.
Parameters
mediaUnit:
Media unit that receives media
parameters:
OptionalOptional. WebSocket interaction only parameters
Returns
type:
void
stop
stop(): void
Stops playback. The current player's instance is destroyed.
Returns
type:
void
stopMediaTo
stopMediaTo(mediaUnit: ): void
Stops sending media from the player to the media unit.
Parameters
mediaUnit:
Media unit that does not need to receive media from this conference anymore
Returns
type:
void