Namespace LiveKit.Proto
Classes
- AudioFrameReflection
Holder for reflection information generated from audio_frame.proto
- ByteStreamOpenRequest
Opens an outgoing stream. Call must be balanced with a StreamCloseRequest.
- ByteStreamReaderReadAllRequest
Reads an incoming byte stream in its entirety.
- ByteStreamReaderReadIncrementalRequest
Reads an incoming byte stream incrementally.
- ByteStreamReaderWriteToFileRequest
Writes data from an incoming stream to a file as it arrives.
- ByteStreamWriterCloseRequest
Closes a stream writer.
- ByteStreamWriterWriteRequest
Writes data to a stream writer.
- CaptureAudioFrameRequest
Push a frame to an AudioSource The data provided must be available as long as the client receive the callback.
- CaptureVideoFrameRequest
Push a frame to a VideoSource
- ConnectCallback.Types
Container for nested types declared in the ConnectCallback message type.
- ConnectRequest
Connect to a new LiveKit room
- CreateAudioTrackRequest
Create a new AudioTrack from a AudioSource
- CreateVideoTrackRequest
Create a new VideoTrack from a VideoSource
- DataStream.Types
Container for nested types declared in the DataStream message type.
- DataStream.Types.ByteHeader
header properties specific to byte or file streams
- DataStream.Types.Header
main DataStream.Header that contains a oneof for specific headers
- DataStream.Types.TextHeader
header properties specific to text streams
- DataStreamReflection
Holder for reflection information generated from data_stream.proto
- DataTrackFrame
A frame published on a data track.
- DataTrackInfo
Information about a published data track.
- DataTrackOptions
Options for publishing a data track.
- DataTrackPublished
A remote participant published a data track.
- DataTrackReflection
Holder for reflection information generated from data_track.proto
- DataTrackStreamEOS
Stream has ended.
- DataTrackStreamEvent
Event emitted on an active stream.
- DataTrackStreamFrameReceived
A frame was received.
- DataTrackStreamReadRequest
Signal readiness to handle the next frame.
This allows the client to put backpressure on the internal receive buffer. Sending this request will cause the next frame to be sent via
DataTrackStreamFrameReceivedonce one is available.
- DataTrackSubscribeOptions
Reserved for future subscription options.
- DataTrackUnpublished
A remote participant unpublished a data track.
- DisconnectRequest
Disconnect from the a room
- DisposeRequest
Stop all rooms synchronously (Do we need async here?). e.g: This is used for the Unity Editor after each assemblies reload. TODO(theomonnom): Implement a debug mode where we can find all leaked handles?
- E2EeReflection
Holder for reflection information generated from e2ee.proto
- EnableRemoteTrackPublicationRequest
Enable/Disable a remote track publication
- EnableRemoteTrackRequest
Enable/Disable a remote track
- FfiEvent
To minimize complexity, participant events are not included in the protocol. It is easily deducible from the room events and it turned out that is is easier to implement on the ffi client side.
- FfiOwnedHandle
Safety
The foreign language is responsable for disposing handles Forgetting to dispose the handle may lead to memory leaks
Dropping a handle doesn't necessarily mean that the object is destroyed if it is still used on the FfiServer (Atomic reference counting)
When refering to a handle without owning it, we just use a uint32 without this message. (the variable name is suffixed with "_handle")
- FfiReflection
Holder for reflection information generated from ffi.proto
- FfiRequest
This is the input of livekit_ffi_request function We always expect a response (FFIResponse, even if it's empty)
- FfiResponse
This is the output of livekit_ffi_request function.
- GetSessionStatsCallback.Types
Container for nested types declared in the GetSessionStatsCallback message type.
- HandleReflection
Holder for reflection information generated from handle.proto
- LoadAudioFilterPluginRequest
Audio Filter Plugin
- LocalDataTrackIsPublishedRequest
Checks if the track is still published.
- LocalDataTrackTryPushRequest
Try pushing a frame to subscribers of the track.
- LocalDataTrackUnpublishRequest
Unpublishes the track.
- LocalTrackMuteRequest
Mute/UnMute a track
- NewAudioResamplerRequest
Create a new AudioResampler
- NewAudioSourceRequest
Create a new AudioSource
- NewAudioStreamRequest
Create a new AudioStream AudioStream is used to receive audio frames from a track
- NewVideoSourceRequest
Create a new VideoSource VideoSource is used to send video frame to a track
- NewVideoStreamRequest
Create a new VideoStream VideoStream is used to receive video frames from a track
- OwnedByteStreamReader
A reader for an incoming stream.
- OwnedDataTrackStream
Handle to an active data track subscription.
Dropping the handle will unsubscribe from the track.
- OwnedTextStreamReader
A reader for an incoming stream.
- ParticipantPermission
copied from livekit-protocol/protocol/protobufs/livekit_models.proto and removed deprecated fields
- ParticipantReflection
Holder for reflection information generated from participant.proto
- PerformRpcCallback
FFI Callbacks
- PerformRpcRequest
FFI Requests
- PerformRpcResponse
FFI Responses
- PublishDataRequest
Publish data to other participants
- PublishDataTrackRequest
Publish a data track
- PublishSipDtmfRequest
Publish Sip DTMF messages to other participants
- PublishTrackRequest
Publish a track to the room
- PublishTranscriptionRequest
Publish transcription messages to room
- RemixAndResampleRequest
Remix and resample an audio frame
- RemoteDataTrackIsPublishedRequest
Checks if the track is still published.
- RoomReflection
Holder for reflection information generated from room.proto
- RpcMethodInvocationEvent
FFI Events
- RpcReflection
Holder for reflection information generated from rpc.proto
- RtcStats.Types
Container for nested types declared in the RtcStats message type.
- RtcStats.Types.Track
Deprecated
- SetLocalAttributesRequest
Change the local participant's attributes
- SetLocalMetadataRequest
Change the local participant's metadata
- SetLocalNameRequest
Change the local participant's name
- SetRemoteTrackPublicationQualityRequest
For tracks that support simulcasting, adjust subscribed quality.
- SetSubscribedRequest
Change the "desire" to subs2ribe to a track
- StatsReflection
Holder for reflection information generated from stats.proto
- StreamError
Error pertaining to a stream.
- StreamSendBytesRequest
Sends bytes over a data stream.
- StreamSendFileRequest
Sends the contents of a file over a data stream.
- StreamSendTextRequest
Sends text over a data stream.
- SubscribeDataTrackRequest
Subscribe to a data track.
- TextStreamInfo.Types
Container for nested types declared in the TextStreamInfo message type.
- TextStreamOpenRequest
Opens an outgoing text stream. Call must be balanced with a TextStreamCloseRequest.
- TextStreamReaderReadAllRequest
Reads an incoming text stream in its entirety.
- TextStreamReaderReadIncrementalRequest
Reads an incoming text stream incrementally.
- TextStreamWriterCloseRequest
Closes a text stream writer.
- TextStreamWriterWriteRequest
Writes text to a text stream writer.
- TrackPublicationReflection
Holder for reflection information generated from track_publication.proto
- TrackReflection
Holder for reflection information generated from track.proto
- TrackSubscribed
Publication isn't needed for subscription events on the FFI The FFI will retrieve the publication using the Track sid
- UnpublishTrackRequest
Unpublish a track from the room
- UpdateRemoteTrackPublicationDimensionRequest
update a remote track publication dimension
- VideoBufferInfo.Types
Container for nested types declared in the VideoBufferInfo message type.
- VideoFrameReflection
Holder for reflection information generated from video_frame.proto
- VideoStreamFromParticipantRequest
Request a video stream from a participant
Enums
- AudioStreamEvent.MessageOneofCase
Enum of possible cases for the "message" oneof.
- ByteStreamOpenCallback.ResultOneofCase
Enum of possible cases for the "result" oneof.
- ByteStreamReaderEvent.DetailOneofCase
Enum of possible cases for the "detail" oneof.
- ByteStreamReaderReadAllCallback.ResultOneofCase
Enum of possible cases for the "result" oneof.
- ByteStreamReaderWriteToFileCallback.ResultOneofCase
Enum of possible cases for the "result" oneof.
- ConnectCallback.MessageOneofCase
Enum of possible cases for the "message" oneof.
- DataPacketReceived.ValueOneofCase
Enum of possible cases for the "value" oneof.
- DataStream.Types.Header.ContentHeaderOneofCase
Enum of possible cases for the "content_header" oneof.
- DataStream.Types.OperationType
enum for operation types (specific to TextHeader)
- DataTrackStreamEvent.DetailOneofCase
Enum of possible cases for the "detail" oneof.
- E2eeRequest.MessageOneofCase
Enum of possible cases for the "message" oneof.
- E2eeResponse.MessageOneofCase
Enum of possible cases for the "message" oneof.
- FfiEvent.MessageOneofCase
Enum of possible cases for the "message" oneof.
- FfiRequest.MessageOneofCase
Enum of possible cases for the "message" oneof.
- FfiResponse.MessageOneofCase
Enum of possible cases for the "message" oneof.
- GetSessionStatsCallback.MessageOneofCase
Enum of possible cases for the "message" oneof.
- NewSoxResamplerResponse.MessageOneofCase
Enum of possible cases for the "message" oneof.
- PublishDataTrackCallback.ResultOneofCase
Enum of possible cases for the "result" oneof.
- PublishTrackCallback.MessageOneofCase
Enum of possible cases for the "message" oneof.
- RoomEvent.MessageOneofCase
Enum of possible cases for the "message" oneof.
- RtcStats.StatsOneofCase
Enum of possible cases for the "stats" oneof.
- SendChatMessageCallback.MessageOneofCase
Enum of possible cases for the "message" oneof.
- StreamSendBytesCallback.ResultOneofCase
Enum of possible cases for the "result" oneof.
- StreamSendFileCallback.ResultOneofCase
Enum of possible cases for the "result" oneof.
- StreamSendTextCallback.ResultOneofCase
Enum of possible cases for the "result" oneof.
- TextStreamOpenCallback.ResultOneofCase
Enum of possible cases for the "result" oneof.
- TextStreamReaderEvent.DetailOneofCase
Enum of possible cases for the "detail" oneof.
- TextStreamReaderReadAllCallback.ResultOneofCase
Enum of possible cases for the "result" oneof.
- VideoBufferType
Values of this enum must not be changed It is used to serialize a rtc.VideoFrame on Python
- VideoConvertResponse.MessageOneofCase
Enum of possible cases for the "message" oneof.
- VideoQuality
Video quality for simulcasted tracks.
- VideoStreamEvent.MessageOneofCase
Enum of possible cases for the "message" oneof.