
📹🎙️🐍 Python Client SDK for LiveKit
The Livekit Python Client provides a convenient interface for integrating Livekit's real-time video and audio capabilities into your Python applications. With this library, developers can easily leverage Livekit's WebRTC functionalities, allowing them to focus on building their AI models or other application logic without worrying about the complexities of WebRTC.
Official LiveKit documentation: https://docs.livekit.io/
Installation
$ pip install livekit
Connecting to a room
async def main():
room = livekit.Room()
await room.connect(URL, TOKEN)
logging.info("connected to room %s", room.name)
@room.on("participant_connected")
def on_participant_connected(participant: livekit.RemoteParticipant):
logging.info(
"participant connected: %s %s", participant.sid, participant.identity)
video_stream = None
@room.on("track_subscribed")
def on_track_subscribed(track: livekit.Track, publication: livekit.RemoteTrackPublication, participant: livekit.RemoteParticipant):
logging.info("track subscribed: %s", publication.sid)
if track.kind == livekit.TrackKind.KIND_VIDEO:
nonlocal video_stream
video_stream = livekit.VideoStream(track)
@video_stream.on("frame_received")
def on_video_frame(frame: livekit.VideoFrame):
# received a video frame from the track
pass
await room.run()
Examples
- Facelandmark: Use mediapipe to detect face landmarks (eyes, nose ...)
- Whisper: Transcribe an audio track using OpenAI whisper
- Basic room: Connect to a room
- Publish hue: Publish a rainbow video track
- Publish wave: Publish a sine wave
Getting help / Contributing
Please join us on Slack to get help from our devs / community members. We welcome your contributions(PRs) and details can be discussed there.
LiveKit Ecosystem | |
---|---|
Client SDKs | Components · JavaScript · iOS/macOS · Android · Flutter · React Native · Rust · Python · Unity (web) · Unity (beta) |
Server SDKs | Node.js · Golang · Ruby · Java/Kotlin · PHP (community) · Python (community) |
Services | Livekit server · Egress · Ingress |
Resources | Docs · Example apps · Cloud · Self-hosting · CLI |